/** * Base API Types * * Common interface that all API implementations should inherit from. * Provides standardized methods for token management and common functionality. */ /** * Base API interface that all API implementations should inherit from. * Provides common functionality for access token management. */ export interface BaseAPI { /** * Set the access token for authenticated requests. * * @param token - JWT access token */ setAccessToken(token: string): void; }