renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
48 lines (47 loc) • 1.12 kB
TypeScript
import { z } from 'zod';
export declare const UnityReleasesJSON: z.ZodObject<{
results: z.ZodArray<z.ZodObject<{
version: z.ZodString;
releaseDate: z.ZodString;
releaseNotes: z.ZodObject<{
url: z.ZodString;
}, "strip", z.ZodTypeAny, {
url: string;
}, {
url: string;
}>;
shortRevision: z.ZodString;
}, "strip", z.ZodTypeAny, {
version: string;
releaseDate: string;
releaseNotes: {
url: string;
};
shortRevision: string;
}, {
version: string;
releaseDate: string;
releaseNotes: {
url: string;
};
shortRevision: string;
}>, "many">;
}, "strip", z.ZodTypeAny, {
results: {
version: string;
releaseDate: string;
releaseNotes: {
url: string;
};
shortRevision: string;
}[];
}, {
results: {
version: string;
releaseDate: string;
releaseNotes: {
url: string;
};
shortRevision: string;
}[];
}>;