@oclif/plugin-autocomplete
Version:
autocomplete plugin for oclif
28 lines (27 loc) • 970 B
TypeScript
import { AutocompleteBase } from '../../base.js';
export default class Create extends AutocompleteBase {
static description: string;
static hidden: boolean;
private _commands?;
run(): Promise<void>;
private get bashCommandsWithFlagsList();
private get bashCompletionFunction();
private get bashCompletionFunctionPath();
private get bashFunctionsDir();
private get bashSetupScript();
private get bashSetupScriptPath();
private get commands();
private createFiles;
private ensureDirs;
private get genAllCommandsMetaString();
private get genCaseStatementForFlagsMetaString();
private genCmdPublicFlags;
private genZshFlagSpecs;
private get pwshCompletionFunctionPath();
private get pwshFunctionsDir();
private get zshCompletionFunction();
private get zshCompletionFunctionPath();
private get zshFunctionsDir();
private get zshSetupScript();
private get zshSetupScriptPath();
}