/// import { AsyncMap } from '@eppo/js-client-sdk-common'; /** Chrome storage-backed {@link AsyncMap}. */ export default class ChromeStorageAsyncMap implements AsyncMap { private readonly storage; constructor(storage: chrome.storage.StorageArea); has(key: string): Promise; get(key: string): Promise; entries(): Promise<{ [p: string]: T; }>; set(key: string, value: T): Promise; } //# sourceMappingURL=chrome-storage-async-map.d.ts.map