UNPKG

470 BTypeScriptView Raw
1import Command, { flags } from '@heroku-cli/command';
2export declare abstract class AutocompleteBase extends Command {
3 errorIfWindows(): void;
4 errorIfNotSupportedShell(shell: string): void;
5 readonly autocompleteCacheDir: string;
6 readonly completionsCacheDir: string;
7 readonly acLogfilePath: string;
8 writeLogFile(msg: string): void;
9 protected findCompletion(cmdId: string, name: string, description?: string): flags.ICompletion | undefined;
10}