UNPKG

@infosel-sdk/core

Version:

Core SDK for Infosel financial services platform. Provides essential infrastructure for authentication, HTTP/GraphQL communication, storage management, and error handling.

10 lines (9 loc) 308 B
import Token from '../../entities/token'; export interface TokenAuthProviderConfig { readonly type: 'existing-token'; readonly token: Token; readonly realm?: string; readonly clientId?: string; } type AuthTokenProviderConfig = TokenAuthProviderConfig; export default AuthTokenProviderConfig;