sigit.io/src/types/zip.ts
SwiftHawk a32abaf9e7
All checks were successful
Release / build_and_release (push) Successful in 55s
feat: implemented the UI and logic for signing document
2024-04-18 16:12:11 +05:00

14 lines
255 B
TypeScript

export interface OutputByType {
base64: string
string: string
text: string
binarystring: string
array: number[]
uint8array: Uint8Array
arraybuffer: ArrayBuffer
blob: Blob
nodebuffer: Buffer
}
export type OutputType = keyof OutputByType