Add .gitignore to exclude all node packages and lock files
This commit is contained in:
13
skills/remotion-prompt-video/node_modules/@remotion/cli/dist/entry-point.d.ts
generated
vendored
Normal file
13
skills/remotion-prompt-video/node_modules/@remotion/cli/dist/entry-point.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
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 {};
|
||||
Reference in New Issue
Block a user