remotion
Version:
Make videos programmatically
5 lines (4 loc) • 316 B
TypeScript
import type { SequenceSchema } from './sequence-field-schema';
export type ResolveValue = (key: string) => unknown;
export declare const flattenActiveSchema: (schema: SequenceSchema, resolve: ResolveValue) => SequenceSchema;
export declare const getFlatSchemaWithAllKeys: (schema: SequenceSchema) => SequenceSchema;