Async LegacyConfigOptions for well-known endpoint usage

interface AsyncLegacyConfigOptions {
    callbackFactory?: FRCallbackFactory;
    clientId?: string;
    middleware?: LegacyRequestMiddleware[];
    oauthThreshold?: number;
    platformHeader?: boolean;
    prefix?: string;
    realmPath?: string;
    redirectUri?: string;
    scope?: string;
    serverConfig: AsyncServerConfig;
    tokenStore?: CustomStorageObject | "sessionStorage" | "localStorage";
    tree?: string;
    type?: string;
}

Hierarchy

Properties

callbackFactory?: FRCallbackFactory
clientId?: string
oauthThreshold?: number
platformHeader?: boolean
prefix?: string
realmPath?: string
redirectUri?: string
scope?: string
serverConfig: AsyncServerConfig
tokenStore?: CustomStorageObject | "sessionStorage" | "localStorage"
tree?: string
type?: string