Files
hoppscotch/helpers/types/HoppRESTRequest.ts
2021-07-12 20:17:13 -04:00

19 lines
290 B
TypeScript

export type HoppRESTParam = {
key: string
value: string
active: boolean
}
export type HoppRESTHeader = {
key: string
value: string
active: boolean
}
export interface HoppRESTRequest {
method: string
endpoint: string
params: HoppRESTParam[]
headers: HoppRESTHeader[]
}