Skip to content

Variable: CreateListSchema

ts
const CreateListSchema: ZodObject<{
  idBoard: ZodUnknown;
  idListSource: ZodOptional<ZodUnknown>;
  name: ZodString;
  pos: ZodOptional<ZodUnion<readonly [ZodNumber, ZodEnum<{
     bottom: "bottom";
     top: "top";
  }>]>>;
}, $strip>;

Defined in: parameters/createList.ts:3