Variable $DecodedTableDataConst

$DecodedTableData: {
    description: "Decoded table data";
    properties: {
        key: {
            description: "Key of table in JSON";
            isRequired: true;
            properties: {};
        };
        key_type: {
            description: "Type of key";
            isRequired: true;
            type: "string";
        };
        value: {
            description: "Value of table in JSON";
            isRequired: true;
            properties: {};
        };
        value_type: {
            description: "Type of value";
            isRequired: true;
            type: "string";
        };
    };
} = ...

Type declaration

  • description: "Decoded table data"
  • properties: {
        key: {
            description: "Key of table in JSON";
            isRequired: true;
            properties: {};
        };
        key_type: {
            description: "Type of key";
            isRequired: true;
            type: "string";
        };
        value: {
            description: "Value of table in JSON";
            isRequired: true;
            properties: {};
        };
        value_type: {
            description: "Type of value";
            isRequired: true;
            type: "string";
        };
    }
    • key: {
          description: "Key of table in JSON";
          isRequired: true;
          properties: {};
      }
      • description: "Key of table in JSON"
      • isRequired: true
      • properties: {}
      • key_type: {
            description: "Type of key";
            isRequired: true;
            type: "string";
        }
        • description: "Type of key"
        • isRequired: true
        • type: "string"
      • value: {
            description: "Value of table in JSON";
            isRequired: true;
            properties: {};
        }
        • description: "Value of table in JSON"
        • isRequired: true
        • properties: {}
        • value_type: {
              description: "Type of value";
              isRequired: true;
              type: "string";
          }
          • description: "Type of value"
          • isRequired: true
          • type: "string"

      Generated using TypeDoc