-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.d.ts
126 lines (110 loc) · 3.09 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import { Server as HttpServer, IncomingMessage, ServerResponse } from 'http'
import { Server as HttpsServer } from 'https'
import {
Http2SecureServer,
Http2ServerRequest,
Http2ServerResponse
} from 'http2'
declare namespace restana {
enum Protocol {
HTTP = 'http',
HTTPS = 'https',
HTTP2 = 'http2'
}
// https://github.com/microsoft/TypeScript/issues/1897#issuecomment-580962081
type Body =
| null
| boolean
| number
| string
| Buffer
| Body[]
| { [prop: string]: Body }
enum Method {
GET = 'get',
DELETE = 'delete',
PATCH = 'patch',
POST = 'post',
PUT = 'put',
HEAD = 'head',
OPTIONS = 'options',
TRACE = 'trace'
}
interface RequestExtensions {
params: Record<string, string>
query: Record<string, string | string[]>
originalUrl: string,
body?: Body
}
type Request<P extends Protocol> = P extends Protocol.HTTP2
? Http2ServerRequest & RequestExtensions
: IncomingMessage & RequestExtensions
interface ResponseExtensions {
send(
data?: unknown,
code?: number,
headers?: Record<string, number | string | string[]>,
cb?: () => void
): void
}
interface Router<P extends Protocol> {
get: RegisterRoute<P>
delete: RegisterRoute<P>
patch: RegisterRoute<P>
post: RegisterRoute<P>
put: RegisterRoute<P>
head: RegisterRoute<P>
options: RegisterRoute<P>
trace: RegisterRoute<P>
all: RegisterRoute<P>
}
type Response<P extends Protocol> = P extends Protocol.HTTP2
? Http2ServerResponse & ResponseExtensions
: ServerResponse & ResponseExtensions
type Server<P extends Protocol> = P extends Protocol.HTTP2
? Http2SecureServer
: P extends Protocol.HTTPS
? HttpsServer
: HttpServer
type RequestHandler<P extends Protocol> = (
req: Request<P>,
res: Response<P>,
next: (error?: unknown) => void
) => void | Promise<unknown>
type ErrorHandler<P extends Protocol> = (
err: Error,
req: Request<P>,
res: Response<P>,
) => void | Promise<unknown>
interface RegisterRoute<P extends Protocol> {
(
path: string | string[],
...middlewares: RequestHandler<P>[]
): Service<P>
}
interface Options<P extends Protocol> {
server?: Server<P>
prioRequestsProcessing?: boolean
routerCacheSize?: number
defaultRoute?: RequestHandler<P>
errorHandler?: ErrorHandler<P>
}
interface Service<P extends Protocol> extends Router<P> {
routes(): string[],
getRouter(): Router<P>,
newRouter(): Router<P>
errorHandler: ErrorHandler<P>,
getServer(): Server<P>,
getConfigOptions(): Options<P>
use(middleware: RequestHandler<P>): restana.Service<P>
use(prefix: string, middleware: RequestHandler<P>): restana.Service<P>
use(prefix: string, middleware: Router<P>): restana.Service<P>
handle(req: Request<P>, res: Response<P>): void
start(port?: number, host?: string): Promise<Server<P>>
close(): Promise<void>
}
}
declare function restana<P extends restana.Protocol = restana.Protocol.HTTP>(
options?: restana.Options<P>
): restana.Service<P>
export = restana