renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
17 lines (16 loc) • 778 B
TypeScript
import { z } from 'zod';
export declare const DevContainerFile: z.ZodPipeline<z.ZodEffects<z.ZodString, string | number | boolean | import("type-fest").JsonObject | import("type-fest").JsonValue[] | readonly import("type-fest").JsonValue[] | null, string>, z.ZodObject<{
image: z.ZodOptional<z.ZodString>;
features: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
version?: string | undefined;
}>, Record<string, any>>>;
}, "strip", z.ZodTypeAny, {
image?: string | undefined;
features?: Record<string, {
version?: string | undefined;
}> | undefined;
}, {
image?: string | undefined;
features?: Record<string, any> | undefined;
}>>;
export type DevContainerFile = z.infer<typeof DevContainerFile>;