feat: url and params rewrite index.vue

This commit is contained in:
Andrew Bastin
2021-07-11 21:33:11 -04:00
parent 498d0e18b9
commit 54d21c4950
5 changed files with 205 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
export type HoppRESTParam = {
key: string
value: string
active: boolean
}
export interface HoppRESTRequest {
endpoint: string
params: HoppRESTParam[]
}