remotion
Version:
Make videos programmatically
17 lines (16 loc) • 714 B
TypeScript
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;
};
export type SolidProps = MandatoryProps & Partial<OptionalProps>;
export declare const Solid: React.ComponentType<MandatoryProps & Partial<OptionalProps> & Pick<SequenceProps, "hidden" | "name" | "durationInFrames" | "from" | "showInTimeline"> & React.RefAttributes<HTMLCanvasElement>>;
export {};