UNPKG
@rgba-image/gif
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Convert between GIF and ImageData
github.com/rgba-image/gif
rgba-image/gif
@rgba-image/gif
/
dist
/
to-gif.d.ts
4 lines
(3 loc)
•
177 B
TypeScript
View Raw
1
2
3
4
import
{
FrameArg
}
from
'./types'
;
export
declare
const
toGif
:
(
imageData
:
ImageData
) =>
Uint8Array
;
export
declare
const
toAnimatedGif
:
(
...
frames
:
FrameArg
[]
) =>
Uint8Array
;