ap-angular-sortablejs
Version:
SortableJS for Angular 2+
29 lines • 964 B
JavaScript
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