UNPKG

425 BTypeScriptView Raw
1import { Command } from '@oclif/core';
2export declare abstract class AutocompleteBase extends Command {
3 get cliBin(): string;
4 get cliBinEnvVar(): string;
5 determineShell(shell: string): string;
6 errorIfWindows(): void;
7 errorIfNotSupportedShell(shell: string): void;
8 get autocompleteCacheDir(): string;
9 get acLogfilePath(): string;
10 writeLogFile(msg: string): void;
11 private isBashOnWindows;
12}