UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

17 lines 916 B
import { OAuth2State } from '@/utils'; import { Realm } from '@sage-bionetworks/synapse-client'; type AuthenticationMethodSelectionProps = { ssoRedirectUrl?: string; onBeginOAuthSignIn?: () => void; onSelectUsernameAndPassword: () => void; state?: OAuth2State; realm?: Realm; }; /** * To support Google SSO in your portal, you must add your domain to the Authorized Redirect URIs for Synapse authentication. * This can be done by visiting https://sagebionetworks.jira.com/servicedesk/customer/portal/9 to set up a collaboration. * Synapse engineers must add your redirect URL in the Google API console found at https://console.cloud.google.com/ for this functionality to work. */ export default function AuthenticationMethodSelection(props: AuthenticationMethodSelectionProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=AuthenticationMethodSelection.d.ts.map