mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
docs: add missing closing parentheses (#50114)
This commit is contained in:
committed by
GitHub
parent
7576b084ad
commit
9026f38e32
2
types/express-serve-static-core/index.d.ts
vendored
2
types/express-serve-static-core/index.d.ts
vendored
@@ -47,7 +47,7 @@ export type ParamsArray = string[];
|
||||
export type Params = ParamsDictionary | ParamsArray;
|
||||
|
||||
export interface RequestHandler<P = ParamsDictionary, ResBody = any, ReqBody = any, ReqQuery = ParsedQs> {
|
||||
// tslint:disable-next-line callable-types (This is extended from and can't extend from a type alias in ts<2.2
|
||||
// tslint:disable-next-line callable-types (This is extended from and can't extend from a type alias in ts<2.2)
|
||||
(req: Request<P, ResBody, ReqBody, ReqQuery>, res: Response<ResBody>, next: NextFunction): void;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user