-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Jeffrey Baldwin
authored
Mar 31, 2023
1 parent
72a79e4
commit 4f9a106
Showing
7 changed files
with
314 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { IncomingMessage } from 'http'; | ||
import { ParamsDictionary } from 'express-serve-static-core'; | ||
|
||
export interface ParamsIncomingMessage extends IncomingMessage { | ||
/** | ||
* **Only valid for requests with path parameters.** | ||
* | ||
* The path parameters of the request. For example, if the request URL is | ||
* `/users/123`, and the route definition is `/users/:id` | ||
* then `request.params` will be `{ id: '123' }`. | ||
*/ | ||
params?: ParamsDictionary; | ||
} |
Oops, something went wrong.