7 lines
359 B
TypeScript
7 lines
359 B
TypeScript
type ExecCommandType = 'cli' | 'script';
|
|
export declare function getExecCommand(type?: ExecCommandType): Promise<string>;
|
|
export declare function formatCommand(command: string): string;
|
|
export declare function suggestCloudSupportCommand(action: 'enable' | 'disable'): Promise<string>;
|
|
export declare function suggestLintCommand(): Promise<string>;
|
|
export {};
|