UNPKG

@pagopa/dx-cli

Version:

A CLI useful to manage DX tools.

7 lines (6 loc) 249 B
import { z } from "zod/v4"; export declare const githubRepoSchema: z.ZodObject<{ owner: z.ZodString; repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>; }, z.core.$strip>; export type GitHubRepo = z.infer<typeof githubRepoSchema>;