@remotion/gif
Version:
Embed GIFs in a Remotion video
13 lines (12 loc) • 420 B
TypeScript
import type { GifFillMode } from './props';
type Props = {
readonly index: number;
readonly frames: ImageData[];
readonly width?: number;
readonly height?: number;
readonly fit: GifFillMode;
readonly className?: string;
readonly style?: React.CSSProperties;
};
export declare const Canvas: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<unknown>>;
export {};