Files
story-studio/remotion/node_modules/@remotion/cli/dist/entry-point.d.ts
2026-02-21 10:33:18 +01:00

14 lines
522 B
TypeScript

import type { LogLevel } from '@remotion/renderer';
type FoundReason = 'argument passed - found in cwd' | 'argument passed - found in root' | 'argument passed' | 'config file' | 'common paths' | 'none found';
export declare const findEntryPoint: ({ args, logLevel, remotionRoot, allowDirectory, }: {
args: (string | number)[];
remotionRoot: string;
logLevel: LogLevel;
allowDirectory: boolean;
}) => {
file: string | null;
remainingArgs: (string | number)[];
reason: FoundReason;
};
export {};