/** * Auto-generated Zod schema for Link * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { Link as LinkOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const LinkSchema: z.ZodObject<{ href: z.ZodString; }, z.core.$strip>; export type Link = LinkOctokit; export declare function isLink(value: unknown): value is Link; //# sourceMappingURL=link.d.ts.map