jpush-ui
Version:
极光大数据前端Angular组件(^6.1.0)
9 lines (8 loc) • 325 B
TypeScript
import { PlatformService } from '../platform/platform.service';
export declare class Storage {
private platform;
constructor(platform: PlatformService);
set(key: string, data: string, useCookie?: boolean): void;
get(key: string, useCookie?: boolean): any;
remove(key: string, useCookie?: boolean): any;
}