@code-pushup/models
Version:
Model definitions and validators for the Code PushUp CLI
10 lines (9 loc) • 310 B
TypeScript
import { z } from 'zod';
export declare const uploadConfigSchema: z.ZodObject<{
server: z.ZodString;
apiKey: z.ZodString;
organization: z.ZodString;
project: z.ZodString;
timeout: z.ZodOptional<z.ZodNumber>;
}, z.core.$strip>;
export type UploadConfig = z.infer<typeof uploadConfigSchema>;