forked from fastify/fastify-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
79 lines (70 loc) · 1.92 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
import * as http from 'http';
import * as fastify from 'fastify';
import * as SwaggerSchema from 'swagger-schema-official';
import * as http2 from 'http2';
declare namespace fastifySwagger {
interface FastifySwaggerOptions {
mode?: 'static' | 'dynamic';
/**
* Overwrite the swagger url end-point
* @default /documentation
*/
routePrefix?: string;
/**
* To expose the documentation api
* @default false
*/
exposeRoute?: boolean;
}
interface FastifyDynamicSwaggerOptions extends FastifySwaggerOptions {
mode?: 'dynamic';
swagger?: Partial<SwaggerSchema.Spec>;
/**
* Overwrite the route schema
*/
transform?: Function;
}
interface StaticPathSpec {
path: string;
postProcessor?: (spec: SwaggerSchema.Spec) => SwaggerSchema.Spec;
baseDir: string;
}
interface StaticDocumentSpec {
document: string;
}
interface FastifyStaticSwaggerOptions extends FastifySwaggerOptions {
mode: 'static';
specification: StaticPathSpec | StaticDocumentSpec;
}
}
declare module 'fastify' {
interface FastifyInstance<
HttpServer,
HttpRequest,
HttpResponse
> {
swagger: (
opts?: {
yaml?: boolean;
}
) => SwaggerSchema.Spec;
}
interface RouteSchema {
hide?: boolean;
tags?: string[];
description?: string;
summary?: string;
consumes?: string[];
security?: Array<{ [securityLabel: string]: string[] }>;
}
}
declare function fastifySwagger<
HttpServer extends (http.Server | http2.Http2Server),
HttpRequest extends (http.IncomingMessage | http2.Http2ServerRequest),
HttpResponse extends (http.ServerResponse | http2.Http2ServerResponse),
SwaggerOptions = (fastifySwagger.FastifyStaticSwaggerOptions | fastifySwagger.FastifyDynamicSwaggerOptions)
>(
fastify : fastify.FastifyInstance<HttpServer, HttpRequest, HttpResponse>,
opts : SwaggerOptions
) : void;
export = fastifySwagger;