Files
hoppscotch/helpers/types/HoppRESTAuth.ts
2021-08-12 13:56:11 +05:30

25 lines
377 B
TypeScript

export type HoppRESTAuthNone = {
authType: "none"
authActive: true
}
export type HoppRESTAuthBasic = {
authType: "basic"
authActive: true
username: string
password: string
}
export type HoppRESTAuthBearer = {
authType: "bearer"
authActive: true
token: string
}
export type HoppRESTAuth =
| HoppRESTAuthNone
| HoppRESTAuthBasic
| HoppRESTAuthBearer