mand-mobile/components/image-reader/image-processor.d.ts

16 lines
338 B
TypeScript
Raw Permalink Normal View History

2018-08-01 00:52:11 +08:00
export interface ImageProcessorOptions {
dataUrl: string
width?: number
height?: number
quality: number
}
export interface ImageProcessorData {
dataUrl: string
blob: Blob
}
export default function ImageProcessor(
options: ImageProcessorOptions,
callback?: (data: ImageProcessorData) => any): Promise<ImageProcessorData>