UNPKG

@remotion/gif

Version:

Embed GIFs in a Remotion video

13 lines (12 loc) 622 B
import React from 'react'; import { type SequenceControls, type SequenceProps } from 'remotion'; import type { RemotionGifProps } from './props'; export type GifProps = Omit<SequenceProps, 'children' | 'durationInFrames' | 'layout'> & RemotionGifProps & { readonly durationInFrames?: number; }; export declare const Gif: React.ComponentType<Omit<SequenceProps, "children" | "durationInFrames" | "layout"> & RemotionGifProps & { readonly durationInFrames?: number | undefined; } & { readonly _experimentalControls?: SequenceControls | undefined; readonly ref?: React.Ref<HTMLCanvasElement> | undefined; }>;