UNPKG

168 BTypeScriptView Raw
1import { OAuthUser } from './oauth-user';
2export interface OAuthOptions {
3 [provider: string]: {
4 authenticate: (params: any) => Promise<OAuthUser>;
5 };
6}