UNPKG

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