mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-14 16:32:26 +00:00
9 lines
291 B
TypeScript
9 lines
291 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const BazelModuleMetadata = z.object({
|
|
homepage: z.string().optional().nullable(),
|
|
versions: z.array(z.string()),
|
|
yanked_versions: z.record(z.string(), z.string()).optional(),
|
|
});
|
|
|
|
export type BazelModuleMetadata = z.infer<typeof BazelModuleMetadata>;
|