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