renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
35 lines (34 loc) • 811 B
TypeScript
import { z } from 'zod';
/**
* Response from registry.buildpacks.io
*/
export declare const BuildpacksRegistryResponse: z.ZodObject<{
latest: z.ZodOptional<z.ZodObject<{
homepage: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
homepage?: string | undefined;
}, {
homepage?: string | undefined;
}>>;
versions: z.ZodArray<z.ZodObject<{
version: z.ZodString;
}, "strip", z.ZodTypeAny, {
version: string;
}, {
version: string;
}>, "many">;
}, "strip", z.ZodTypeAny, {
versions: {
version: string;
}[];
latest?: {
homepage?: string | undefined;
} | undefined;
}, {
versions: {
version: string;
}[];
latest?: {
homepage?: string | undefined;
} | undefined;
}>;