MonoCloud Authentication SDK
    Preparing search index...
    PostCallbackParams:
        | {
            mode: InteractionMode
            | "silent";
            returnUrl?: string;
            type: "signIn";
        }
        | { mode: InteractionMode; returnUrl?: string; type: "signOut" }

    Metadata passed to PostCallback after callback processing completes.

    Type Declaration

    • { mode: InteractionMode | "silent"; returnUrl?: string; type: "signIn" }
      • mode: InteractionMode | "silent"

        Interaction mode used during sign-in.

      • OptionalreturnUrl?: string

        Optional URL to navigate to after sign-in.

      • type: "signIn"

        Indicates a sign-in flow was completed.

    • { mode: InteractionMode; returnUrl?: string; type: "signOut" }
      • mode: InteractionMode

        Interaction mode used during sign-out.

      • OptionalreturnUrl?: string

        Optional URL to navigate to after sign-out.

      • type: "signOut"

        Indicates a sign-out flow was completed.