@supernovaio/cli
Version:
Supernova.io Command Line Interface
24 lines • 885 B
TypeScript
import { z, ZodType } from "zod";
import { SentryCommand } from "../../../types/index.js";
declare const AnalyzeStatusConfig: z.ZodObject<{
designSystemId: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
designSystemId?: string | undefined;
}, {
designSystemId?: string | undefined;
}>;
type AnalyzeStatusConfig = z.infer<typeof AnalyzeStatusConfig>;
export default class AnalyzeStatus extends SentryCommand<AnalyzeStatusConfig> {
static hidden: boolean;
static args: {};
static description: string;
static examples: string[];
static flags: {
designSystemId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
};
get commandId(): string;
get configSchema(): ZodType<AnalyzeStatusConfig>;
run(): Promise<void>;
}
export {};
//# sourceMappingURL=status.d.ts.map