mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
// Type definitions for request-ip
|
|
// Project: https://github.com/pbojinov/request-ip
|
|
// Definitions by: Adam Babcock <https://github.com/mrhen>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module "request-ip" {
|
|
interface Request {
|
|
headers: {
|
|
'x-client-ip'?: string;
|
|
'x-forwarded-for'?: string;
|
|
'x-real-ip'?: string;
|
|
'x-cluster-client-ip'?: string;
|
|
'x-forwarded'?: string;
|
|
'forwarded-for'?: string;
|
|
'forwarded'?: string;
|
|
};
|
|
connection: {
|
|
remoteAddress?: string;
|
|
socket?: {
|
|
remoteAddress?: string
|
|
};
|
|
};
|
|
info?: {
|
|
remoteAddress?: string
|
|
};
|
|
socket?: {
|
|
remoteAddress?: string
|
|
};
|
|
}
|
|
|
|
interface Options {
|
|
attributeName: string;
|
|
}
|
|
|
|
export function getClientIp(req:Request):string;
|
|
|
|
export function mw(options?: Options): (req: Request, res: any, next: any) => any;
|
|
}
|