Interface PopupSignInOptions

Options to override options during popup sign in

interface PopupSignInOptions {
    acr_values?: string;
    extraQueryParams?: Record<string, string | number | boolean>;
    extraTokenParams?: Record<string, unknown>;
    login_hint?: string;
    max_age?: number;
    nonce?: string;
    popupSignal?: AbortSignal;
    popupWindowFeatures?: PopupWindowFeatures;
    popupWindowTarget?: string;
    prompt?: string;
    redirect_uri?: string;
    resource?: string | string[];
    scope?: string;
    state?: unknown;
    ui_locales?: string;
    url_state?: string;
}

Hierarchy

  • SigninPopupArgs
    • PopupSignInOptions

Properties

acr_values?: string
extraQueryParams?: Record<string, string | number | boolean>
extraTokenParams?: Record<string, unknown>
login_hint?: string
max_age?: number
nonce?: string
popupSignal?: AbortSignal

An AbortSignal to set request's signal.

popupWindowFeatures?: PopupWindowFeatures
popupWindowTarget?: string
prompt?: string
redirect_uri?: string
resource?: string | string[]
scope?: string
state?: unknown

custom "state", which can be used by a caller to have "data" round tripped

ui_locales?: string
url_state?: string