Socket
Socket
Sign inDemoInstall

@types/express-oauth-server

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/express-oauth-server

TypeScript definitions for express-oauth-server


Version published
Weekly downloads
4.7K
decreased by-9.51%
Maintainers
1
Weekly downloads
 
Created
Source

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.

index.d.ts

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<OAuth2Server.Token>;

    authorize(options?: OAuth2Server.AuthorizeOptions): (
        request: express.Request,
        response: express.Response,
        next: express.NextFunction,
    ) => Promise<OAuth2Server.AuthorizationCode>;

    token(options?: OAuth2Server.TokenOptions): (
        request: express.Request,
        response: express.Response,
        next: express.NextFunction,
    ) => Promise<OAuth2Server.Token>;
}

export = ExpressOAuthServer;

Additional Details

Credits

These definitions were written by Arne Schubert.

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc