import { ClientMessageBrokerFactory } from '@angular/platform-webworker'; import { DataStoreService } from './data-store.service'; export declare class DataStoreWorkerService extends DataStoreService { private brokerFactory; private broker; constructor(brokerFactory: ClientMessageBrokerFactory); protected getItem(type: string, key: string): Promise; protected setItem(type: string, key: string, value: string): Promise; protected removeItem(type: string, key: string): Promise; protected keys(type: string): Promise; private execOnUI(fn, args); }