has Files hasFiles : () => Promise < boolean >
hasHTML hasHTML : () => Promise < boolean >
has Image hasImage : () => Promise < boolean >
hasRTF hasRTF : () => Promise < boolean >
has Text hasText : () => Promise < boolean >
read Files readFiles : () => Promise < string [] >
read Html readHtml : () => Promise < string >
read Image Base64 readImageBase64 : () => Promise < string >
Type declaration () : Promise < string > Returns Promise < string > image in base64 string
read Image Binary readImageBinary : ( format : "Uint8Array" | "int_array" | "Blob" , ) => Promise < number [] | Uint8Array | Blob >
Type declaration ( format : "Uint8Array" | "int_array" | "Blob" , ) : Promise < number [] | Uint8Array | Blob > Parameters format : "Uint8Array" | "int_array" | "Blob" Returns Promise < number [] | Uint8Array | Blob > read Rtf readRtf : () => Promise < string >
read Text readText : () => Promise < string >
write Files writeFiles : ( filesPaths : string [] ) => Promise < void >
write Html writeHtml : ( html : string ) => Promise < void >
write Html And Text writeHtmlAndText : ( html : string , text : string ) => Promise < void >
Type declaration ( html : string , text : string ) : Promise < void > Returns Promise < void > write Image Base64 writeImageBase64 : ( base64 : string ) => Promise < void >
Type declaration ( base64 : string ) : Promise < void > Returns Promise < void > Promise
write Image Binary writeImageBinary : ( bytes : number [] ) => Promise < void >
write Rtf writeRtf : ( rtf : string ) => Promise < void >
write Text writeText : ( text : string ) => Promise < void >
read clipboard image