File size: 272 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { createZodDto } from "nestjs-zod/dto";
import { z } from "zod";
export const contributorSchema = z.object({
id: z.number(),
name: z.string(),
url: z.string(),
avatar: z.string(),
});
export class ContributorDto extends createZodDto(contributorSchema) {}
|