/** * No tocar... */ declare const authCheck: any; /** * server.js const authCheck = jwt({ secret: jwks.expressJwtSecret({ cache: true, rateLimit: true, jwksRequestsPerMinute: 5, // YOUR-AUTH0-DOMAIN name e.g https://mi.dominio.auth0.com jwksUri: 'https://mi.dominio.auth0.com/.well-known/jwks.json' }), // This is the identifier we set when we created the API audience: 'https://mi.dominio.auth0.com/api/v2/', issuer: 'mi.dominio.auth0.com', algorithms: 'RS256'] }); AuthService.js const CLIENT_ID = 'pwawvou4hsdf7mnNJuMuV5Glx2a0Vz4X7imup'; const CLIENT_DOMAIN = 'mi.dominio.auth0.com'; const REDIRECT = 'http://localhost:3000/callback'; const SCOPE = 'openid'; const AUDIENCE = 'https://mi.dominio.auth0.com/userinfo'; */ export default authCheck; //# sourceMappingURL=authCheck.d.ts.map