@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
14 lines (13 loc) • 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 {};