UNPKG

remotion

Version:

Make videos programmatically

18 lines (17 loc) 761 B
import React from 'react'; import type { SequenceProps } from '../Sequence.js'; import type { EffectsProp } from './effect-types.js'; type MandatoryProps = { readonly width: number; readonly height: number; }; type OptionalProps = { readonly color: string | undefined; readonly effects: EffectsProp; readonly className: string | undefined; readonly style: React.CSSProperties | undefined; readonly pixelDensity: number | undefined; }; export type SolidProps = MandatoryProps & Partial<OptionalProps>; export declare const Solid: React.ComponentType<MandatoryProps & Partial<OptionalProps> & Pick<SequenceProps, "durationInFrames" | "from" | "hidden" | "name" | "showInTimeline"> & React.RefAttributes<HTMLCanvasElement>>; export {};