Interface SignoutRequestArgs

interface SignoutRequestArgs {
    client_id?: string;
    extraQueryParams?: Record<string, string | number | boolean>;
    id_token_hint?: string;
    post_logout_redirect_uri?: string;
    request_type?: string;
    state_data?: unknown;
    url: string;
}

Properties

client_id?: string
extraQueryParams?: Record<string, string | number | boolean>
id_token_hint?: string
post_logout_redirect_uri?: string
request_type?: string
state_data?: unknown

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

url: string

Generated using TypeDoc