8 lines
325 B
TypeScript
8 lines
325 B
TypeScript
import { type EnumPath } from '@remotion/studio-shared';
|
|
export declare const updateDefaultProps: ({ input, compositionId, newDefaultProps, enumPaths, }: {
|
|
input: string;
|
|
compositionId: string;
|
|
newDefaultProps: Record<string, unknown>;
|
|
enumPaths: EnumPath[];
|
|
}) => Promise<Promise<Promise<Promise<string>>>>;
|