mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-15 07:17:00 +10:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
import { z } from "zod";
|
|
|
|
export const customFieldSchema = z.object({
|
|
id: z.string().cuid2(),
|
|
icon: z.string(),
|
|
name: z.string(),
|
|
value: z.string(),
|
|
});
|
|
|
|
export type CustomField = z.infer<typeof customFieldSchema>;
|