mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
commit
7147d06d3e
@ -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;
|
||||
|
||||
4
restify/restify.d.ts
vendored
4
restify/restify.d.ts
vendored
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user