6 lines
191 B
TypeScript
6 lines
191 B
TypeScript
import { z } from "zod"
|
|
|
|
import { getBreadcrumbsSchema } from "@/server/routers/contentstack/breadcrumbs/output"
|
|
|
|
export interface Breadcrumbs extends z.infer<typeof getBreadcrumbsSchema> {}
|