Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
import type { LogLevel } from '@remotion/renderer';
|
||||
import type { PromptObject } from 'prompts';
|
||||
type Question<V extends string = string> = PromptObject<V> & {
|
||||
optionsPerPage?: number;
|
||||
};
|
||||
type NamelessQuestion = Omit<Question<'value'>, 'name'>;
|
||||
export declare function selectAsync(question: NamelessQuestion, logLevel: LogLevel): Promise<string | string[]>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user