@aca-1/a2-composer
Version:
Angular 2 Interface for composer
11 lines (10 loc) • 408 B
TypeScript
export declare class DataStoreService {
protected store: any;
constructor();
readonly local: any;
readonly session: any;
protected getItem(type: string, key: string): Promise<string>;
protected setItem(type: string, key: string, value: string): Promise<string>;
protected removeItem(type: string, key: string): Promise<string>;
protected keys(type: string): Promise<any[]>;
}