UNPKG

growthbook

Version:

The GrowthBook command-line interface (CLI) for working with the GrowthBook A/B testing, feature flagging, and experimentation platform

22 lines (21 loc) 617 B
import { Command } from '@oclif/core'; export default class Logout extends Command { static description: string; static examples: never[]; static flags: { profile: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>; }; static args: {}; run(): Promise<void>; /** * Removes all profiles * @return void */ private writeBlankFileToGrowthBookConfig; /** * Removes only specified profile * @param profile Named profile * @return void */ private logOutOfProfile; }