UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

9 lines (8 loc) 398 B
import { BrowserStorageDataStore } from './browser-storage-data-store'; /** * Defines a single value data store using browser local storage as the underlying storage mechanism * This data store uses the provided storage key to get/set/clear a value from LocalStorage. */ export declare abstract class LocalDataStore<T> extends BrowserStorageDataStore<T> { constructor(storageKey: string); }