Variable browserImageToolsConst
browserImageTools: {
toDataURL: (url: string | Buffer | Blob) => Promise<string>;
getSize: (
src: string | Buffer | Blob,
crossOrigin?: string,
) => Promise<{ width: number; height: number }>;
} = ...
Type declaration
toDataURL: (url: string | Buffer | Blob) => Promise<string>
getSize: (
src: string | Buffer | Blob,
crossOrigin?: string,
) => Promise<{ width: number; height: number }>