npm install --save @types/express-oauth-server
This package contains type definitions for express-oauth-server (https://github.com/oauthjs/express-oauth-server#readme).
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;
- Last updated: Wed, 25 Sep 2024 19:19:36 GMT
- Dependencies: @types/express, @types/oauth2-server
These definitions were written by Arne Schubert.