8 lines
136 B
TypeScript
8 lines
136 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZAdminGet = z.object({
|
|
id: z.number(),
|
|
});
|
|
|
|
export type TAdminGet = z.infer<typeof ZAdminGet>;
|