mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-14 06:47:00 +10:00
50ba37a27f
* chore(release): v5.1.0 * feat: implement resume thumbnails * fix: remove unused mcp tools * docs: fix formatting of docs
21 lines
280 B
TypeScript
21 lines
280 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",
|
|
]);
|
|
|
|
export type Template = z.infer<typeof templateSchema>;
|