UNPKG

@tdb/util

Version:
11 lines (10 loc) 383 B
import { Observable } from 'rxjs'; import { prop, parse } from './prop'; import { ILocalStorageOptions, ILocalStorageChangedEvent, LocalStorageProp } from './types'; export { ILocalStorageOptions, LocalStorageProp }; export * from './types'; export declare const localStorage: { prop: typeof prop; parse: typeof parse; changes$: Observable<ILocalStorageChangedEvent>; };