UNPKG

ap-angular-sortablejs

Version:
29 lines 964 B
import { NgModule } from '@angular/core'; import { SortablejsDirective } from './sortablejs.directive'; import { SortablejsService } from './sortablejs.service'; var SortablejsModule = (function () { function SortablejsModule() { } SortablejsModule.forRoot = function (globalOptions) { SortablejsModule._globalOptions = globalOptions; return { ngModule: SortablejsModule, providers: [ SortablejsService ] }; }; return SortablejsModule; }()); export { SortablejsModule }; SortablejsModule._globalOptions = {}; SortablejsModule.decorators = [ { type: NgModule, args: [{ declarations: [SortablejsDirective], exports: [SortablejsDirective], providers: [SortablejsService] },] }, ]; /** @nocollapse */ SortablejsModule.ctorParameters = function () { return []; }; //# sourceMappingURL=sortablejs.module.js.map