8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
|
import type { z } from "zod";
|
||
|
|
||
|
import { getScheduleSchema } from "./types";
|
||
|
|
||
|
export const ZGetScheduleInputSchema = getScheduleSchema;
|
||
|
|
||
|
export type TGetScheduleInputSchema = z.infer<typeof ZGetScheduleInputSchema>;
|