mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-14 23:07:01 +10:00
28 lines
550 B
TypeScript
28 lines
550 B
TypeScript
import { z } from "zod";
|
|
|
|
import { defaultItem, defaultUrl, itemSchema, urlSchema } from "../shared";
|
|
|
|
// Schema
|
|
export const experienceSchema = itemSchema.extend({
|
|
company: z.string().min(1),
|
|
position: z.string(),
|
|
location: z.string(),
|
|
date: z.string(),
|
|
summary: z.string(),
|
|
url: urlSchema,
|
|
});
|
|
|
|
// Type
|
|
export type Experience = z.infer<typeof experienceSchema>;
|
|
|
|
// Defaults
|
|
export const defaultExperience: Experience = {
|
|
...defaultItem,
|
|
company: "",
|
|
position: "",
|
|
location: "",
|
|
date: "",
|
|
summary: "",
|
|
url: defaultUrl,
|
|
};
|