Files
Reactive-Resume/packages/schema/src/templates.ts
T
2026-05-13 01:07:35 +02:00

22 lines
291 B
TypeScript

import z from "zod";
export const templateSchema = z.enum([
"azurill",
"bronzor",
"chikorita",
"ditgar",
"ditto",
"gengar",
"glalie",
"kakuna",
"lapras",
"leafish",
"meowth",
"onyx",
"pikachu",
"rhyhorn",
"scizor",
]);
export type Template = z.infer<typeof templateSchema>;