8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZRoutingFormOrderInputSchema = z.object({
|
||
|
ids: z.array(z.string()),
|
||
|
});
|
||
|
|
||
|
export type TRoutingFormOrderInputSchema = z.infer<typeof ZRoutingFormOrderInputSchema>;
|