UNPKG

@amplitude/ampli

Version:

Amplitude CLI

21 lines (20 loc) 796 B
import { flags } from '@oclif/command'; import Command from '../base'; export default class Logout extends Command { static id: string; static description: string; static flags: { zone: flags.IOptionFlag<string>; 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>; user: flags.IOptionFlag<string | undefined>; all: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; static args: never[]; static usage: string; static examples: string[]; run(): Promise<void>; }