diff --git a/types/oauth2orize/index.d.ts b/types/oauth2orize/index.d.ts index 38165ae290..ea593fa203 100644 --- a/types/oauth2orize/index.d.ts +++ b/types/oauth2orize/index.d.ts @@ -9,6 +9,14 @@ import { IncomingMessage, ServerResponse } from "http"; +declare global { + namespace Express { + interface Request { + oauth2?: OAuth2; + } + } +} + export interface OAuth2 { client: any; user: any;