UNPKG

richpartners-telegram-sdk

Version:
9 lines (8 loc) 269 B
export declare class LocalStorageService { set(key: string, value: any, ttl?: number | null): void; get<T>(key: string): any; remove(key: string): void; clear(): void; getWithPrefix(key: string): any; } export declare const LS: LocalStorageService;