We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 165fe06 commit 202e2c2Copy full SHA for 202e2c2
index.d.ts
@@ -1,7 +1,7 @@
1
import * as restana from 'restana'
2
3
declare namespace fastgateway {
4
- type Type = 'http' | 'lambda' | (string & {})
+ type ProxyType = 'http' | 'lambda' | (string & {})
5
6
type Method =
7
| 'GET'
@@ -20,13 +20,13 @@ declare namespace fastgateway {
20
}
21
22
interface ProxyFactoryOpts {
23
- proxyType: Type
+ proxyType: ProxyType
24
opts: {}
25
route: Route
26
27
28
interface Route {
29
- proxyType?: Type
+ proxyType?: ProxyType
30
proxyConfig?: {}
31
proxyHandler?: Function
32
pathRegex?: string
0 commit comments