15 lines
474 B
TypeScript
15 lines
474 B
TypeScript
import { Command } from '@oclif/core';
|
|
export default class CloudSupport extends Command {
|
|
static description: string;
|
|
static examples: string[];
|
|
static args: {
|
|
action: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
};
|
|
run(): Promise<void>;
|
|
private enableCloudSupport;
|
|
private disableCloudSupport;
|
|
private updateEslintConfig;
|
|
private updateStrictMode;
|
|
private showCloudSupportStatus;
|
|
}
|