1.0.4 • Published 6 months ago

@types/passport-naver v1.0.4

Weekly downloads
428
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/passport-naver

Summary

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

Details

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

index.d.ts

// Type definitions for passport-naver 0.2
// Project: https://github.com/naver/passport-naver
// Definitions by: Park9eon <https://github.com/Park9eon>
//                 ZeroCho <https://github.com/zerocho>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

import passport = require("passport");
import express = require("express");

export interface Profile extends passport.Profile {
    id: string;
    provider: string;

    _json: {
        email: string,
        nickname: string,
        profile_image: string,
        age: number,
        birthday: any
        id: string
    };
}

export interface StrategyOption {
    clientID: string;
    clientSecret: string;
    callbackURL: string;

    svcType?: number | undefined;
    authType?: string | undefined;

    authorizationURL?: string | undefined;
    tokenURL?: string | undefined;
    profileURL?: string | undefined;
}

export interface StrategyOptionWithRequest extends StrategyOption {
    passReqToCallback: boolean;
}

export type VerifyFunction = (accessToken: string, refreshToken: string, profile: Profile, done: (error: any, user?: any, info?: any) => void) => void;
export type VerifyFunctionWithRequest = (req: express.Request, accessToken: string, refreshToken: string, profile: Profile, done: (error: any, user?: any, info?: any) => void) => void;

export class Strategy extends passport.Strategy {
    constructor(options: StrategyOption, verify: VerifyFunction);
    constructor(options: StrategyOptionWithRequest, verify: VerifyFunctionWithRequest);

    authenticate(req: express.Request, options?: any): void;
    authorizationParams: (options: any) => any;
    userProfile: (accessToken: string, done: (error: any, user?: any) => void) => void;
}

Additional Details

Credits

These definitions were written by Park9eon, and ZeroCho.

1.0.2

8 months ago

1.0.4

6 months ago

1.0.3

7 months ago

1.0.1

2 years ago

1.0.0

2 years ago

0.2.1

3 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago