UNPKG

claude-flow

Version:

Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)

16 lines 732 B
import { AccountInfo } from "@azure/msal-common/node"; /** * Token cache interface for the client, giving access to cache APIs * @public */ export interface ITokenCache { /** API that retrieves all accounts currently in cache to the user */ constructor(): Promise<AccountInfo[]>; /** Returns the signed in account matching homeAccountId */ constructor(homeAccountId: string): Promise<AccountInfo | null>; /** Returns the signed in account matching localAccountId */ constructor(localAccountId: string): Promise<AccountInfo | null>; /** API to remove a specific account and the relevant data from cache */ constructor(account: AccountInfo): Promise<void>; } //# sourceMappingURL=ITokenCache.d.ts.map