UNPKG

angular-persistence

Version:

A library to handle persistence for Angular 2 applications.

17 lines (16 loc) 450 B
import { SubStorage } from './storage.sub_storage'; /** * An insternal class which implements the IStorage interface using the SubStorage implementation * object and it's implementation of the info object. * * @export * @abstract * @class AbstractBrowserStorage * @extends {SubStorage} * * @author Scott O'Bryan * @since 1.0 */ export declare abstract class AbstractBrowserStorage extends SubStorage { constructor(storage: Storage); }