@tdb/util
Version:
Shared helpers and utilities.
11 lines (10 loc) • 383 B
TypeScript
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>;
};