8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZWorkflowOrderInputSchema = z.object({
|
||
|
ids: z.array(z.number()),
|
||
|
});
|
||
|
|
||
|
export type TWorkflowOrderInputSchema = z.infer<typeof ZWorkflowOrderInputSchema>;
|