UNPKG

461 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 get autocompleteCacheDir(): string;
6 get completionsCacheDir(): string;
7 get acLogfilePath(): string;
8 writeLogFile(msg: string): void;
9 protected findCompletion(cmdId: string, name: string, description?: string): flags.ICompletion | undefined;
10}