/** * Auto-generated Zod schema for License * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { License as LicenseOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const LicenseSchema: z.ZodObject<{ key: z.ZodString; name: z.ZodString; spdx_id: z.ZodString; url: z.ZodNullable; node_id: z.ZodString; }, z.core.$strip>; export type License = LicenseOctokit; export declare function isLicense(value: unknown): value is License; //# sourceMappingURL=license.d.ts.map