You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
4 years ago
|
// Definitions by: Jannik <https://github.com/jannikkeye>
|
||
|
// Leo <https://github.com/leomelzer>
|
||
|
/// <reference types="node" />
|
||
|
import * as fastify from 'fastify';
|
||
|
import { Plugin } from "fastify";
|
||
|
import { Server, IncomingMessage, ServerResponse } from "http";
|
||
|
import { Http2SecureServer, Http2Server, Http2ServerRequest, Http2ServerResponse } from "http2";
|
||
|
import * as https from "https";
|
||
|
|
||
|
type HttpServer = Server | Http2Server | Http2SecureServer | https.Server;
|
||
|
type HttpRequest = IncomingMessage | Http2ServerRequest;
|
||
|
type HttpResponse = ServerResponse | Http2ServerResponse;
|
||
|
|
||
|
declare module "fastify" {
|
||
|
interface FastifyReply<HttpResponse> {
|
||
|
sendFile(filename: string, rootPath?: string): FastifyReply<HttpResponse>;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
declare function fastifyStatic(): fastify.Plugin<
|
||
|
Server,
|
||
|
IncomingMessage,
|
||
|
ServerResponse,
|
||
|
{
|
||
|
root: string;
|
||
|
prefix?: string;
|
||
|
prefixAvoidTrailingSlash?: boolean;
|
||
|
serve?: boolean;
|
||
|
decorateReply?: boolean;
|
||
|
schemaHide?: boolean;
|
||
|
setHeaders?: (...args: any[]) => void;
|
||
|
redirect?: boolean;
|
||
|
wildcard?: boolean | string;
|
||
|
|
||
|
// Passed on to `send`
|
||
|
acceptRanges?: boolean;
|
||
|
cacheControl?: boolean;
|
||
|
dotfiles?: boolean;
|
||
|
etag?: boolean;
|
||
|
extensions?: string[];
|
||
|
immutable?: boolean;
|
||
|
index?: string[];
|
||
|
lastModified?: boolean;
|
||
|
maxAge?: string | number;
|
||
|
}
|
||
|
>;
|
||
|
|
||
|
declare namespace fastifyStatic {
|
||
|
interface FastifyStaticOptions {}
|
||
|
}
|
||
|
|
||
|
export = fastifyStatic;
|