envinos
Version:
Sync your local environment variables from external source shared among developers
35 lines (34 loc) • 921 B
TypeScript
import { z } from 'zod';
export declare const configurationSchema: z.ZodObject<{
secrets: z.ZodArray<z.ZodObject<{
label: z.ZodOptional<z.ZodString>;
key: z.ZodString;
filePath: z.ZodString;
}, "strip", z.ZodTypeAny, {
key: string;
filePath: string;
label?: string | undefined;
}, {
key: string;
filePath: string;
label?: string | undefined;
}>, "many">;
skipKeyword: z.ZodOptional<z.ZodString>;
region: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
secrets: {
key: string;
filePath: string;
label?: string | undefined;
}[];
skipKeyword?: string | undefined;
region?: string | undefined;
}, {
secrets: {
key: string;
filePath: string;
label?: string | undefined;
}[];
skipKeyword?: string | undefined;
region?: string | undefined;
}>;