github-pr-automation
Version:
MCP server and CLI for automated GitHub PR management, review resolution, and workflow optimization
14 lines • 374 B
TypeScript
import { z } from "zod";
/**
* Zod schema for PR identifier string
* Supports multiple formats
*/
export declare const PRIdentifierStringSchema: z.ZodString;
/**
* Common pagination schema
*/
export declare const PaginationSchema: z.ZodObject<{
page: z.ZodDefault<z.ZodNumber>;
page_size: z.ZodNumber;
}, z.core.$strip>;
//# sourceMappingURL=validation.d.ts.map