Files
hoppscotch/helpers/types/HoppRESTRequest.ts
2021-07-12 09:11:55 +05:30

12 lines
180 B
TypeScript

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