@supernovaio/cli
Version:
Supernova.io Command Line Interface
46 lines • 1.66 kB
TypeScript
import { z, ZodType } from "zod";
import { SentryCommand } from "../types/index.js";
declare const ImportComponentsConfigSchema: z.ZodEffects<z.ZodObject<{
designSystemId: z.ZodString;
importFrom: z.ZodString;
rootDir: z.ZodString;
versionId: z.ZodString;
}, "strip", z.ZodTypeAny, {
designSystemId: string;
importFrom: string;
rootDir: string;
versionId: string;
}, {
designSystemId: string;
importFrom: string;
rootDir: string;
versionId: string;
}>, {
rootDir: string;
designSystemId: string;
importFrom: string;
versionId: string;
}, {
designSystemId: string;
importFrom: string;
rootDir: string;
versionId: string;
}>;
type ImportComponentsConfig = z.infer<typeof ImportComponentsConfigSchema>;
export default class ImportComponents extends SentryCommand<ImportComponentsConfig> {
static args: {};
static description: string;
static examples: string[];
static flags: {
designSystemId: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
importFrom: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
rootDir: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
versionId: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
};
static hidden: boolean;
get commandId(): string;
get configSchema(): ZodType<ImportComponentsConfig>;
run(): Promise<void>;
}
export {};
//# sourceMappingURL=components-import.d.ts.map