Variable TYPED_MESSAGE_SCHEMAConst

TYPED_MESSAGE_SCHEMA: {
    properties: {
        domain: {
            type: string;
        };
        message: {
            type: string;
        };
        primaryType: {
            type: string;
        };
        types: {
            additionalProperties: {
                items: {
                    properties: {
                        name: {
                            type: string;
                        };
                        type: {
                            type: string;
                        };
                    };
                    required: string[];
                    type: string;
                };
                type: string;
            };
            type: string;
        };
    };
    required: string[];
    type: string;
} = ...

Type declaration

  • properties: {
        domain: {
            type: string;
        };
        message: {
            type: string;
        };
        primaryType: {
            type: string;
        };
        types: {
            additionalProperties: {
                items: {
                    properties: {
                        name: {
                            type: string;
                        };
                        type: {
                            type: string;
                        };
                    };
                    required: string[];
                    type: string;
                };
                type: string;
            };
            type: string;
        };
    }
    • domain: {
          type: string;
      }
      • type: string
    • message: {
          type: string;
      }
      • type: string
    • primaryType: {
          type: string;
      }
      • type: string
    • types: {
          additionalProperties: {
              items: {
                  properties: {
                      name: {
                          type: string;
                      };
                      type: {
                          type: string;
                      };
                  };
                  required: string[];
                  type: string;
              };
              type: string;
          };
          type: string;
      }
      • additionalProperties: {
            items: {
                properties: {
                    name: {
                        type: string;
                    };
                    type: {
                        type: string;
                    };
                };
                required: string[];
                type: string;
            };
            type: string;
        }
        • items: {
              properties: {
                  name: {
                      type: string;
                  };
                  type: {
                      type: string;
                  };
              };
              required: string[];
              type: string;
          }
          • properties: {
                name: {
                    type: string;
                };
                type: {
                    type: string;
                };
            }
            • name: {
                  type: string;
              }
              • type: string
            • type: {
                  type: string;
              }
              • type: string
          • required: string[]
          • type: string
        • type: string
      • type: string
  • required: string[]
  • type: string