Skip to content

Variable: CreateListSchema

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

Defined in: parameters/createList.ts:3