Files
web/types/requests/system.ts
2024-10-07 08:12:07 +02:00

8 lines
170 B
TypeScript

import { z } from "zod"
import { systemSchema } from "@/server/routers/contentstack/schemas/system"
export interface System {
system: z.output<typeof systemSchema>
}