UNPKG

renovate

Version:

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

25 lines (24 loc) 780 B
import { z } from 'zod'; import type { Release } from '../types'; export declare const HelmRepository: z.ZodEffects<z.ZodObject<{ entries: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, { homepage: string | undefined; sourceUrl: string | undefined; releases: Release[]; }>, Record<string, any>>; }, "strip", z.ZodTypeAny, { entries: Record<string, { homepage: string | undefined; sourceUrl: string | undefined; releases: Release[]; }>; }, { entries: Record<string, any>; }>, Record<string, { homepage: string | undefined; sourceUrl: string | undefined; releases: Release[]; }>, { entries: Record<string, any>; }>; export type HelmRepositoryData = z.infer<typeof HelmRepository>;