Interface NavigateParams

interface NavigateParams {
    nonce?: string;
    response_mode?: "query" | "fragment";
    scriptOrigin?: string;
    state?: string;
    url: string;
}

Properties

nonce?: string

The request "nonce" parameter.

response_mode?: "query" | "fragment"
scriptOrigin?: string
state?: string

The request "state" parameter. For sign out requests, this parameter is optional.

url: string

Generated using TypeDoc