@samatawy/checks
    Preparing search index...

    Variable itemConst

    item: {
        object: {
            notEmpty: (...args: unknown[]) => PropertyDecorator;
            noExtraFields: (...args: unknown[]) => PropertyDecorator;
            matchesType: typeof matchesType;
        };
        string: typeof string;
        number: typeof number;
        boolean: typeof boolean;
        date: typeof date;
        uuid: typeof uuid;
        ulid: typeof ulid;
        email: typeof email;
        url: typeof url;
        file: typeof file;
        image: typeof image;
        array: {
            notEmpty: (...args: unknown[]) => PropertyDecorator;
            minLength: (...args: unknown[]) => PropertyDecorator;
            maxLength: (...args: unknown[]) => PropertyDecorator;
            noDuplicates: (...args: unknown[]) => PropertyDecorator;
            matchesType: typeof matchesType;
        };
    } = ...

    Type Declaration

    • object: {
          notEmpty: (...args: unknown[]) => PropertyDecorator;
          noExtraFields: (...args: unknown[]) => PropertyDecorator;
          matchesType: typeof matchesType;
      }
    • string: typeof string
    • number: typeof number
    • boolean: typeof boolean
    • date: typeof date
    • uuid: typeof uuid
    • ulid: typeof ulid
    • email: typeof email
    • url: typeof url
    • file: typeof file
    • image: typeof image
    • array: {
          notEmpty: (...args: unknown[]) => PropertyDecorator;
          minLength: (...args: unknown[]) => PropertyDecorator;
          maxLength: (...args: unknown[]) => PropertyDecorator;
          noDuplicates: (...args: unknown[]) => PropertyDecorator;
          matchesType: typeof matchesType;
      }