UNPKG

9s-fe-core

Version:

Core functionalities for authentication, configuration, and repository management.

7 lines (6 loc) 224 B
declare class BaseStorages { static setToken(token: string, refreshToken?: string, ctx?: any): void; static getToken(ctx?: any): string | null; static removeToken(ctx?: any): void; } export default BaseStorages;