angular-persistence
Version:
A library to handle persistence for Angular 2 applications.
34 lines • 953 B
JavaScript
import { NgModule } from '@angular/core';
import { PersistenceService } from '../services/persistence.service';
/**
* The module for the persistence framework. This will register the PersistenceService
* as a provider and export it.
*
* @export
* \@class AngularPersistenceModule
*
* @author Scott O'Bryan
* \@since 1.0
*/
export var PersistenceModule = (function () {
function PersistenceModule() {
}
PersistenceModule.decorators = [
{ type: NgModule, args: [{
providers: [PersistenceService]
},] },
];
/** @nocollapse */
PersistenceModule.ctorParameters = function () { return []; };
return PersistenceModule;
}());
function PersistenceModule_tsickle_Closure_declarations() {
/** @type {?} */
PersistenceModule.decorators;
/**
* @nocollapse
* @type {?}
*/
PersistenceModule.ctorParameters;
}
//# sourceMappingURL=persistence.module.js.map