UNPKG

@remotion/gif

Version:

Embed GIFs in a Remotion video

10 lines (9 loc) 285 B
import type { GifState } from './props'; export declare const parseGif: ({ src, controller, }: { src: string; controller: AbortController; }) => Promise<GifState>; export declare const parseWithWorker: (src: string) => { prom: Promise<GifState>; cancel: () => void; };