Installation
npm install --save @types/express-oauth-server
Summary
This package contains type definitions for express-oauth-server (https://github.com/oauthjs/express-oauth-server#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-oauth-server.
import * as express from "express";
import * as OAuth2Server from "oauth2-server";
declare namespace ExpressOAuthServer {
interface Options extends OAuth2Server.ServerOptions {
useErrorHandler?: boolean | undefined;
continueMiddleware?: boolean | undefined;
}
}
declare class ExpressOAuthServer {
server: OAuth2Server;
constructor(options: ExpressOAuthServer.Options);
authenticate(options?: OAuth2Server.AuthenticateOptions): (
request: express.Request,
response: express.Response,
next: express.NextFunction,
) => Promise<void>;
authorize(options?: OAuth2Server.AuthorizeOptions): (
request: express.Request,
response: express.Response,
next: express.NextFunction,
) => Promise<void>;
token(options?: OAuth2Server.TokenOptions): (
request: express.Request,
response: express.Response,
next: express.NextFunction,
) => Promise<void>;
}
export = ExpressOAuthServer;
Additional Details
Credits
These definitions were written by Arne Schubert.