feat: add header session store fields and dispatchers

This commit is contained in:
Andrew Bastin
2021-07-12 20:17:13 -04:00
parent 93ea80a3e3
commit ffc891f38e
2 changed files with 71 additions and 1 deletions

View File

@@ -4,8 +4,15 @@ export type HoppRESTParam = {
active: boolean
}
export type HoppRESTHeader = {
key: string
value: string
active: boolean
}
export interface HoppRESTRequest {
method: string
endpoint: string
params: HoppRESTParam[]
headers: HoppRESTHeader[]
}