UNPKG

angular-persistence

Version:

A library to handle persistence for Angular 2 applications.

10 lines (9 loc) 282 B
import { Expirable } from './persistence.expirable'; import { Storable } from "./persistence.storable"; /** * An interface for the cache config object used for caching and saves. * * @author Scott O'Bryan * @since 1.0 */ export declare type CacheConfig = Expirable & Storable;