mirror of
https://github.com/jakejarvis/hoot.git
synced 2025-10-18 20:14:25 -04:00
13 lines
198 B
TypeScript
13 lines
198 B
TypeScript
import { z } from "zod";
|
|
|
|
export const SectionEnum = z.enum([
|
|
"dns",
|
|
"headers",
|
|
"hosting",
|
|
"certificates",
|
|
"seo",
|
|
"registration",
|
|
]);
|
|
|
|
export type Section = z.infer<typeof SectionEnum>;
|