UNPKG

@veecode-platform/safira-cli

Version:

Generate a microservice project from your spec.

16 lines (15 loc) 413 B
import { Command } from "@oclif/core"; export default class OpenapiValidate extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/core/lib/interfaces").BooleanFlag<void>; }; static args: { name: string; required: boolean; description: string; default: string; }[]; run(): Promise<void>; }