limgen
Version:
Infrastructure as Code generator
19 lines (18 loc) • 593 B
TypeScript
import { Command } from "commander";
import { z } from 'zod';
declare const envPullOptionsSchema: z.ZodObject<{
project: z.ZodOptional<z.ZodString>;
stack: z.ZodOptional<z.ZodString>;
directory: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
directory?: string | undefined;
project?: string | undefined;
stack?: string | undefined;
}, {
directory?: string | undefined;
project?: string | undefined;
stack?: string | undefined;
}>;
export type EnvPullOptions = z.infer<typeof envPullOptionsSchema>;
export declare const envPull: Command;
export {};