@remotion/studio
Version:
APIs for interacting with the Remotion Studio
19 lines (18 loc) • 608 B
TypeScript
import type { PropsEditType } from './DataEditor';
export type TypeCanSaveState = {
canUpdate: true;
} | {
canUpdate: false;
reason: string;
determined: boolean;
};
export declare const getRenderModalWarnings: ({ cliProps, canSaveDefaultProps, isCustomDateUsed, customFileUsed, jsMapUsed, jsSetUsed, inJSONEditor, propsEditType, }: {
cliProps: unknown;
canSaveDefaultProps: TypeCanSaveState | null;
isCustomDateUsed: boolean;
customFileUsed: boolean;
jsMapUsed: boolean;
jsSetUsed: boolean;
inJSONEditor: boolean;
propsEditType: PropsEditType;
}) => string[];