Skip to content

Instantly share code, notes, and snippets.

@PavelPolyakov
Created January 19, 2019 06:59
Show Gist options
  • Save PavelPolyakov/fce20b7a44c2055325416be2b7fad7ee to your computer and use it in GitHub Desktop.
Save PavelPolyakov/fce20b7a44c2055325416be2b7fad7ee to your computer and use it in GitHub Desktop.
import * as fastify from "fastify";
import * as http from "http";
declare module "fastify" {
export interface FastifyInstance<
HttpServer = http.Server,
HttpRequest = http.IncomingMessage,
HttpResponse = http.ServerResponse
> {
blipp(): void;
}
}
@PavelPolyakov
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment