Variable textSchemaConst

textSchema: {
    properties: {
        maxLength: {
            minimum: 0;
            type: "number";
        };
        minLength: {
            minimum: 0;
            type: "number";
        };
        pattern: {
            minLength: 1;
            type: "string";
        };
    };
    type: "object";
} = ...

Type declaration

  • Readonly properties: {
        maxLength: {
            minimum: 0;
            type: "number";
        };
        minLength: {
            minimum: 0;
            type: "number";
        };
        pattern: {
            minLength: 1;
            type: "string";
        };
    }
    • Readonly maxLength: {
          minimum: 0;
          type: "number";
      }
      • Readonly minimum: 0
      • Readonly type: "number"
    • Readonly minLength: {
          minimum: 0;
          type: "number";
      }
      • Readonly minimum: 0
      • Readonly type: "number"
    • Readonly pattern: {
          minLength: 1;
          type: "string";
      }
      • Readonly minLength: 1
      • Readonly type: "string"
  • Readonly type: "object"

Generated using TypeDoc