UNPKG

@amplitude/ampli

Version:

Amplitude CLI

25 lines (24 loc) 892 B
import { flags } from '@oclif/command'; import Command from '../base'; export default class Checkout 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>; version: flags.IOptionFlag<string | undefined>; }; static args: { name: string; required: boolean; }[]; static usage: string; static examples: string[]; run(): Promise<void>; }