/** * Auto-generated Zod schema for WorkflowStepInProgress * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { WorkflowStepInProgress as WorkflowStepInProgressOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const WorkflowStepInProgressSchema: z.ZodObject<{ name: z.ZodString; status: z.ZodLiteral<"in_progress">; conclusion: z.ZodNull; number: z.ZodNumber; started_at: z.ZodString; completed_at: z.ZodNull; }, z.core.$strip>; export type WorkflowStepInProgress = WorkflowStepInProgressOctokit; export declare function isWorkflowStepInProgress(value: unknown): value is WorkflowStepInProgress; //# sourceMappingURL=workflow-step-in-progress.d.ts.map