mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
@@ -49,9 +49,9 @@ function send(req, res, next) {
|
||||
|
||||
req.contentLength === 50;
|
||||
req.contentType === 'test';
|
||||
req.href === 'test';
|
||||
req.href() === 'test';
|
||||
req.id === 'test';
|
||||
req.path === 'test';
|
||||
req.path() === 'test';
|
||||
req.query === 'test';
|
||||
req.secure === true;
|
||||
req.time === 50;
|
||||
|
||||
Vendored
+2
-2
@@ -16,10 +16,10 @@ interface Request {
|
||||
getLogger: (component: string) => any;
|
||||
contentLength: number;
|
||||
contentType: string;
|
||||
href: string;
|
||||
href: () => string;
|
||||
log: Object;
|
||||
id: string;
|
||||
path: string;
|
||||
path: () => string;
|
||||
query: string;
|
||||
secure: bool;
|
||||
time: number;
|
||||
|
||||
Reference in New Issue
Block a user