14 lines
255 B
TypeScript
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
|