@veecode-platform/safira-cli
Version:
Generate a microservice project from your spec.
12 lines (11 loc) • 474 B
TypeScript
import { OktetoBaseCommand } from "../../../base-command/okteto-base-command";
export default class OktetoContextList extends OktetoBaseCommand<typeof OktetoContextList> {
static description: string;
static examples: string[];
static flags: {
help: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
output: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
};
static args: never[];
run(): Promise<void>;
}