UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

20 lines (19 loc) 665 B
import type { PropsEditType } from './DataEditor'; export type TypeCanSaveState = { canUpdate: true; } | { canUpdate: false; reason: string; determined: boolean; }; export declare const defaultTypeCanSaveState: TypeCanSaveState; export declare const getRenderModalWarnings: ({ cliProps, canSaveDefaultProps, isCustomDateUsed, customFileUsed, jsMapUsed, jsSetUsed, inJSONEditor, propsEditType, }: { cliProps: unknown; canSaveDefaultProps: TypeCanSaveState; isCustomDateUsed: boolean; customFileUsed: boolean; jsMapUsed: boolean; jsSetUsed: boolean; inJSONEditor: boolean; propsEditType: PropsEditType; }) => string[];