1 | // Type definitions for forwarded 0.1
|
2 | // Project: https://github.com/jshttp/forwarded
|
3 | // Definitions by: BendingBender <https://github.com/BendingBender>
|
4 | // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
5 |
|
6 | /// <reference types="node" />
|
7 | import { IncomingMessage } from "http";
|
8 |
|
9 | export = forwarded;
|
10 |
|
11 | declare function forwarded(req: IncomingMessage): string[];
|