@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
13 lines (12 loc) • 509 B
TypeScript
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: "error" | "info" | "trace" | "verbose" | "warn";
allowDirectory: boolean;
}) => {
file: string | null;
remainingArgs: (string | number)[];
reason: FoundReason;
};
export {};