Variable displayMappingObjectSchemaConst

displayMappingObjectSchema: {
    additionalProperties: false;
    properties: {
        label: {
            type: readonly ["number", "string"];
        };
        path: {
            items: {
                type: "string";
            };
            type: "array";
        };
        text: {
            type: readonly ["number", "string"];
        };
    };
    type: "object";
} = ...

Type declaration

  • Readonly additionalProperties: false
  • Readonly properties: {
        label: {
            type: readonly ["number", "string"];
        };
        path: {
            items: {
                type: "string";
            };
            type: "array";
        };
        text: {
            type: readonly ["number", "string"];
        };
    }
    • Readonly label: {
          type: readonly ["number", "string"];
      }
      • Readonly type: readonly ["number", "string"]
    • Readonly path: {
          items: {
              type: "string";
          };
          type: "array";
      }
      • Readonly items: {
            type: "string";
        }
        • Readonly type: "string"
      • Readonly type: "array"
    • Readonly text: {
          type: readonly ["number", "string"];
      }
      • Readonly type: readonly ["number", "string"]
  • Readonly type: "object"