UNPKG

@code-pushup/models

Version:

Model definitions and validators for the Code PushUp CLI

9 lines (8 loc) 255 B
import { z } from 'zod'; export declare const commitSchema: z.ZodObject<{ hash: z.ZodString; message: z.ZodString; date: z.ZodCoercedDate<unknown>; author: z.ZodString; }, z.core.$strip>; export type Commit = z.infer<typeof commitSchema>;