interface DavinciOAuthConfig {
    clientId: string;
    redirectUri: string;
    scope: string;
    serverConfig: PathsConfig;
    tokenStore: CustomStorageObject | "sessionStorage" | "localStorage";
}

Hierarchy (View Summary)

Properties

clientId: string
redirectUri: string
scope: string
serverConfig: PathsConfig
tokenStore: CustomStorageObject | "sessionStorage" | "localStorage"