UNPKG

angular-persistence

Version:

A library to handle persistence for Angular 2 applications.

12 lines (11 loc) 261 B
import { StorageType } from '../constants/persistence.storage_type'; /** * Storable items can have a type or use the memory storage type as a * default. * * @author Scott O'Bryan * @since 1.0 */ export declare type Storable = { type?: StorageType; };