@stackone/react-hub
Version:
Allow your users to quickly integrate with several services with StackOne. The `@stackone/react-hub` introduces an easy-to-use React hook for integrating with your web app.
11 lines • 332 B
TypeScript
import { Account } from './Account';
import { HubStyles } from './HubStyles';
export interface StartOptions {
sessionToken: string;
apiUrl?: string;
styles?: HubStyles;
onSuccess?: (account: Account) => void;
onCancel?: () => void;
onClose?: () => void;
}
//# sourceMappingURL=StartOptions.d.ts.map