forked from nsimmons/koa-better-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.d.ts
40 lines (36 loc) · 1.38 KB
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import * as koa from 'koa';
import * as http from 'http';
declare function koaHttpProxy(host: string, options: koaHttpProxy.IOptions): koa.Middleware;
declare namespace koaHttpProxy {
export interface IOptions {
agent?: http.Agent,
headers?: { [key: string]: any },
strippedHeaders?: [string],
https?: boolean,
limit?: string,
parseReqBody?: boolean,
port?: number,
preserveHostHdr?: boolean,
preserveReqSession?: boolean,
reqAsBuffer?: boolean,
reqBodyEncoding?: string | null,
connectTimeout?: number,
timeout?: number,
filter?(ctx: koa.Context): boolean,
proxyReqBodyDecorator?(bodyContent: string, ctx: koa.Context): string | Promise<string>,
proxyReqOptDecorator?(proxyReqOpts: IRequestOption, ctx: koa.Context): IRequestOption | Promise<IRequestOption>,
proxyReqPathResolver?(ctx: koa.Context): string | Promise<string>,
userResDecorator?(proxyRes: http.IncomingMessage, proxyResData: string | Buffer, ctx: koa.Context): string | Buffer | Promise<string> | Promise<Buffer>,
userResHeadersDecorator?(headers: {[key: string]: string}): Promise<{[key: string]: string}> | {[key: string]: string},
}
export interface IRequestOption {
hostname: string,
port: number,
headers: { [key: string]: any },
method: string,
path: string,
bodyContent: string | Buffer,
params: any,
}
}
export = koaHttpProxy