Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com> Co-authored-by: Omar López <zomars@me.com>
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import { z } from "zod";
|
|
|
|
export const getAttributeSchema = z.object({
|
|
id: z.string(),
|
|
});
|
|
|
|
export type ZGetAttributeSchema = z.infer<typeof getAttributeSchema>;
|