core-components: remove unused onSignInFailure and onSignInStarted type aliases

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-04-17 00:13:09 +02:00
parent 180890ef94
commit 8a645d2db5
@@ -35,15 +35,6 @@ export type SignInProviderConfig = {
/** @public */
export type IdentityProviders = ('guest' | 'custom' | SignInProviderConfig)[];
/**
* Invoked when the sign-in process has failed.
*/
export type onSignInFailure = () => void;
/**
* Invoked when the sign-in process has started.
*/
export type onSignInStarted = () => void;
export type ProviderComponent = ComponentType<
SignInPageProps & {
config: SignInProviderConfig;