MonoCloud Authentication SDK
    Preparing search index...

    Options used to customize the sign-in flow.

    interface SignInOptions {
        authParams?: AuthorizationParams;
        onError?: OnError;
        register?: boolean;
        returnUrl?: string;
    }
    Index

    Properties

    authParams?: AuthorizationParams

    Additional authorization parameters merged into the authentication request.

    onError?: OnError

    Callback invoked if an unexpected error occurs during the sign-in flow.

    register?: boolean

    When true, initiates the user registration (sign-up) flow instead of a standard sign-in.

    returnUrl?: string

    Relative URL to redirect the user to after successful authentication.

    If not provided, the application base URL (appUrl) is used.