Files
story-studio/remotion/node_modules/@remotion/renderer/dist/options/beep-on-finish.d.ts
2026-02-21 10:33:18 +01:00

16 lines
402 B
TypeScript

export declare const beepOnFinishOption: {
name: string;
cliFlag: "beep-on-finish";
description: () => import("react/jsx-runtime").JSX.Element;
ssrName: null;
docLink: string;
type: boolean;
getValue: ({ commandLine }: {
commandLine: Record<string, unknown>;
}) => {
value: boolean;
source: string;
};
setConfig(value: boolean): void;
};