UNPKG

ngx-fs

Version:

Access FS API from Electron through Angular Service

21 lines (20 loc) 624 B
import { NgModule } from '@angular/core'; import { FsService } from './src/fsService'; import { FsServiceRef } from './src/fsServiceRef'; export * from './src/fsService'; export * from './src/fsServiceRef'; var NgxFsModule = (function () { function NgxFsModule() { } return NgxFsModule; }()); export { NgxFsModule }; NgxFsModule.decorators = [ { type: NgModule, args: [{ declarations: [], exports: [], providers: [{ provide: FsService, useClass: FsServiceRef }] },] }, ]; /** @nocollapse */ NgxFsModule.ctorParameters = function () { return []; };