UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

67 lines (66 loc) 2.21 kB
import { z } from 'zod'; export declare const CrowStep: z.ZodObject<{ image: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { image?: string | undefined; }, { image?: string | undefined; }>; export declare const CrowConfig: 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<{ pipeline: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{ image: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { image?: string | undefined; }, { image?: string | undefined; }>>>; steps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{ image: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { image?: string | undefined; }, { image?: string | undefined; }>>>; clone: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{ image: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { image?: string | undefined; }, { image?: string | undefined; }>>>; services: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{ image: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { image?: string | undefined; }, { image?: string | undefined; }>>>; }, "strip", z.ZodTypeAny, { steps?: Record<string, { image?: string | undefined; }> | undefined; pipeline?: Record<string, { image?: string | undefined; }> | undefined; clone?: Record<string, { image?: string | undefined; }> | undefined; services?: Record<string, { image?: string | undefined; }> | undefined; }, { steps?: Record<string, { image?: string | undefined; }> | undefined; pipeline?: Record<string, { image?: string | undefined; }> | undefined; clone?: Record<string, { image?: string | undefined; }> | undefined; services?: Record<string, { image?: string | undefined; }> | undefined; }>>; export type CrowConfig = z.infer<typeof CrowConfig>; export type CrowStep = z.infer<typeof CrowStep>;