This commit is contained in:
commit
421043c9b5
67 changed files with 3455 additions and 0 deletions
10
types/server/server.ts
Normal file
10
types/server/server.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
type Query = Record<string, string>;
|
||||
type Params = Record<string, string>;
|
||||
|
||||
interface ExtendedRequest extends Request {
|
||||
startPerf: number;
|
||||
query: Query;
|
||||
params: Params;
|
||||
}
|
||||
|
||||
export type { ExtendedRequest, Query, Params };
|
Loading…
Add table
Add a link
Reference in a new issue