mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-13 22:37:14 +10:00
22 lines
291 B
TypeScript
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>;
|