Type alias ABIReceiverMessage

ABIReceiverMessage: {
    kind: "typed";
    type: string;
} | {
    kind: "any";
} | {
    kind: "empty";
} | {
    kind: "text";
    text?: Maybe<string>;
}

Type declaration

  • kind: "typed"
  • type: string

Type declaration

  • kind: "any"

Type declaration

  • kind: "empty"

Type declaration

  • kind: "text"
  • Optional text?: Maybe<string>