5 lines
113 B
TypeScript
5 lines
113 B
TypeScript
|
import { z } from "zod/v4-mini";
|
||
|
|
||
|
export const idSchema = z.number();
|
||
|
export type Id = z.infer<typeof idSchema>;
|