Files
hoppscotch/helpers/types/HoppRESTRequest.ts
2021-07-11 21:33:11 -04:00

11 lines
163 B
TypeScript

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