Skip to content

Commit

Permalink
docs(types): definitely typed credits (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai committed May 9, 2021
1 parent 75720d2 commit 7c86a2c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/types.ts
@@ -1,9 +1,14 @@
/**
* Based on definition by DefinitelyTyped:
* https://github.com/DefinitelyTyped/DefinitelyTyped/blob/6f529c6c67a447190f86bfbf894d1061e41e07b7/types/http-proxy-middleware/index.d.ts
*/

/* eslint-disable @typescript-eslint/no-empty-interface */

import * as express from 'express';
import * as http from 'http';
import * as httpProxy from 'http-proxy';
import * as net from 'net';
import type * as express from 'express';
import type * as http from 'http';
import type * as httpProxy from 'http-proxy';
import type * as net from 'net';

export interface Request extends express.Request {}
export interface Response extends express.Response {}
Expand Down

0 comments on commit 7c86a2c

Please sign in to comment.