UNPKG

@keen.io/ui-core

Version:

Keen visual components library

11 lines (10 loc) 313 B
import { FC } from 'react'; import { OAuthUserAction, OAuthConfig } from './types'; declare type Props = { config: OAuthConfig; requestInitiatorUrl: string; callbackHandlerHost: string; action?: OAuthUserAction; }; declare const OAuthProviders: FC<Props>; export default OAuthProviders;