UNPKG

@feathersjs/authentication-oauth

Version:

oAuth 1 and 2 authentication for Feathers. Powered by Grant.

7 lines (6 loc) 372 B
import { Application } from '@feathersjs/feathers'; import { OAuthStrategy, OAuthProfile } from './strategy'; import { OAuthService } from './service'; import { OauthSetupSettings } from './utils'; export { OauthSetupSettings, OAuthStrategy, OAuthProfile, OAuthService }; export declare const oauth: (settings?: Partial<OauthSetupSettings>) => (app: Application) => void;