import * as express from 'express'; export async function expressAuthentication( request: express.Request, securityName: string, scopes?: string[] ): Promise { console.dir({ request, securityName, scopes }); return {}; }