forest-cli
Version:
The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.
15 lines • 764 B
TypeScript
import type { Config } from '@oclif/core';
import AbstractAuthenticatedCommand from '../../abstract-authenticated-command';
export default class TeamsDeleteCommand extends AbstractAuthenticatedCommand {
private env;
private inquirer;
static description: string;
static flags: {
name: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
projectId: import("@oclif/core/lib/interfaces").OptionFlag<number, import("@oclif/core/lib/interfaces").CustomOptions>;
force: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
constructor(argv: string[], config: Config, plan?: any);
runAuthenticated(): Promise<void>;
}
//# sourceMappingURL=delete.d.ts.map