8 lines
170 B
TypeScript
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>
|
|
}
|