UNPKG
heic2any
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Converting HEIC/HEIF to PNG/JPEG/GIF in the browser
github.com/alexcorvi/heic2any
alexcorvi/heic2any
heic2any
/
dist
/
heic2any.d.ts
11 lines
(10 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
"./gifshot"
;
import
"./libheif"
;
declare
function
heic2any
(
{ blob, toType, quality, gifInterval, multiple, }: { blob: Blob; multiple?:
true
; toType?:
string
; quality?:
number
; gifInterval?:
number
; }
):
Promise
<
Blob
|
Blob
[]>;
export
default
heic2any;