@types/passport-deezer
TypeScript icon, indicating that this package has built-in type declarations

0.2.3 • Public • Published

Installation

npm install --save @types/passport-deezer

Summary

This package contains type definitions for passport-deezer (https://github.com/krachot/passport-deezer).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/passport-deezer.

index.d.ts

import type { Request } from "express";
import type { OutgoingHttpHeaders } from "http";

declare class Strategy {
    constructor(options: Strategy.StrategyOptions, verify: Strategy.VerifyFunction);

    name: string;
    authenticate(req: Request, options?: object): void;
    static Strategy: { new(options: Strategy.StrategyOptions, verify: Strategy.VerifyFunction): Strategy };
}

declare namespace Strategy {
    interface Profile {
        provider: string;
        id: number;
        displayName: string;
        name: {
            familyName: string;
            givenName: string;
        };
        emails: Array<{ value: string }>;
        photos: Array<{ value: string }>;
        _raw: string;
        _json: any;
    }

    type VerifyCallback = (error?: Error | null, user?: object) => void;

    interface StrategyOptions {
        clientID: string;
        clientSecret: string;
        callbackURL: string;
        scope: string[];
        authorizationURL?: string;
        tokenURL?: string;
        scopeSeparator?: string;
        customHeaders?: OutgoingHttpHeaders;
    }

    type VerifyFunction = (
        accessToken: string,
        refreshToken: string | undefined,
        profile: Profile,
        done: VerifyCallback,
    ) => void;
}

export = Strategy;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: @types/express

Credits

These definitions were written by anyo.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/passport-deezer

Weekly Downloads

2

Version

0.2.3

License

MIT

Unpacked Size

5.23 kB

Total Files

5

Last publish

Collaborators

  • types