2
0
Files

10 lines
263 B
TypeScript
Raw Permalink Normal View History

2024-08-09 00:39:27 +02:00
import { z } from "zod";
export const ZDeleteCredentialInputSchema = z.object({
id: z.number(),
externalId: z.string().optional(),
teamId: z.number().optional(),
});
export type TDeleteCredentialInputSchema = z.infer<typeof ZDeleteCredentialInputSchema>;