fix: interceptor error from extension issue (#3548)

This commit is contained in:
Nivedin
2023-11-14 17:17:23 +05:30
committed by GitHub
parent e24d0ce605
commit 8d7509cdea
10 changed files with 143 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
import { HoppRESTRequest } from "@hoppscotch/data"
import { Component } from "vue"
export type HoppRESTResponseHeader = { key: string; value: string }
@@ -39,3 +40,9 @@ export type HoppRESTResponse =
req: HoppRESTRequest
}
| {
type: "extension_error"
error: string
component: Component
req: HoppRESTRequest
}