heic2any.d.ts 245 B

1234567891011
  1. declare module 'heic2any' {
  2. interface Heic2AnyOptions {
  3. blob: Blob
  4. toType?: string
  5. quality?: number
  6. }
  7. type Heic2AnyResult = Blob | Blob[]
  8. export default function heic2any(options: Heic2AnyOptions): Promise<Heic2AnyResult>
  9. }