Class TokenStorageAbstract

Provides access to the token storage API. The type of storage (localStorage, sessionStorage, etc) can be configured through tokenStore object on the SDK configuration.

Constructors

Methods

  • Returns {
        clientId: string;
        tokenStore:
            | undefined
            | TokenStoreObject
            | "sessionStorage"
            | "localStorage";
    }

    • clientId: string
    • tokenStore:
          | undefined
          | TokenStoreObject
          | "sessionStorage"
          | "localStorage"