Type alias WebRequestBody

WebRequestBody: {
    data: Json;
    type: "json";
} | {
    data: string;
    type: "string";
} | {
    data: string;
    type: "hex";
}

Type declaration

  • data: Json
  • type: "json"

Type declaration

  • data: string
  • type: "string"

Type declaration

  • data: string
  • type: "hex"