UNPKG

375 BTypeScriptView Raw
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" />
7import { IncomingMessage } from 'http';
8
9export = forwarded;
10
11declare function forwarded(req: IncomingMessage): string[];