/** * Auto-generated Zod schema for Milestone * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { Milestone as MilestoneOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const MilestoneSchema: z.ZodObject<{ url: z.ZodString; html_url: z.ZodString; labels_url: z.ZodString; id: z.ZodNumber; node_id: z.ZodString; number: z.ZodNumber; title: z.ZodString; description: z.ZodNullable; creator: z.ZodObject<{ login: z.ZodString; id: z.ZodNumber; node_id: z.ZodString; name: z.ZodOptional; email: z.ZodOptional>; avatar_url: z.ZodString; gravatar_id: z.ZodString; url: z.ZodString; html_url: z.ZodString; followers_url: z.ZodString; following_url: z.ZodString; gists_url: z.ZodString; starred_url: z.ZodString; subscriptions_url: z.ZodString; organizations_url: z.ZodString; repos_url: z.ZodString; events_url: z.ZodString; received_events_url: z.ZodString; type: z.ZodUnion, z.ZodLiteral<"User">, z.ZodLiteral<"Organization">]>; site_admin: z.ZodBoolean; }, z.core.$strip>; open_issues: z.ZodNumber; closed_issues: z.ZodNumber; state: z.ZodUnion, z.ZodLiteral<"closed">]>; created_at: z.ZodString; updated_at: z.ZodString; due_on: z.ZodNullable; closed_at: z.ZodNullable; }, z.core.$strip>; export type Milestone = MilestoneOctokit; export declare function isMilestone(value: unknown): value is Milestone; //# sourceMappingURL=milestone.d.ts.map