UNPKG

@blitzjs/installer

Version:

Package installation for the Blitz CLI

13 lines (12 loc) 309 B
declare enum SearchType { file = 0, directory = 1 } interface FilePromptOptions { globFilter?: string; getChoices?(context: any): string[]; searchType?: SearchType; context: any; } export declare function filePrompt(options: FilePromptOptions): Promise<string>; export {};