docs: add missing closing parentheses (#50114)

This commit is contained in:
Beer van der Drift
2020-12-15 18:04:55 +01:00
committed by GitHub
parent 7576b084ad
commit 9026f38e32

View File

@@ -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;
}