@amplitude/ampli
Version:
Amplitude CLI
23 lines (22 loc) • 934 B
TypeScript
import { flags } from '@oclif/command';
import Command from '../base';
import { DEPRECATED_RUNTIMES } from '../actions/configure';
export default class Configure extends Command {
static id: string;
static description: string;
static flags: {
debug: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
showProgress: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
userDir: flags.IOptionFlag<string>;
projectDir: flags.IOptionFlag<string>;
renameConfigs: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
zone: flags.IOptionFlag<string>;
token: flags.IOptionFlag<string | undefined>;
withOrg: flags.IOptionFlag<string | undefined>;
"deprecated-runtimes": import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
static args: never[];
static usage: string;
static examples: string[];
run(): Promise<void>;
}