UNPKG

@steeveproject/ngx-steem-keychain

Version:
50 lines 1.48 kB
/** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,uselessCode} checked by tsc */ import { NgModule } from '@angular/core'; import { SteemKeychainService } from './steem-keychain.service'; var SteemKeychainModule = /** @class */ (function () { function SteemKeychainModule() { } /** * Use in AppModule: new instance of SteemKeychainService. */ /** * Use in AppModule: new instance of SteemKeychainService. * @return {?} */ SteemKeychainModule.forRoot = /** * Use in AppModule: new instance of SteemKeychainService. * @return {?} */ function () { return { ngModule: SteemKeychainModule, providers: [SteemKeychainService] }; }; /** * Use in features modules with lazy loading: new instance of SteemKeychainService. */ /** * Use in features modules with lazy loading: new instance of SteemKeychainService. * @return {?} */ SteemKeychainModule.forChild = /** * Use in features modules with lazy loading: new instance of SteemKeychainService. * @return {?} */ function () { return { ngModule: SteemKeychainModule, providers: [SteemKeychainService] }; }; SteemKeychainModule.decorators = [ { type: NgModule } ]; return SteemKeychainModule; }()); export { SteemKeychainModule }; //# sourceMappingURL=steem-keychain.module.js.map