angular-gantt
Version:
Gantt chart component for AngularJS
17 lines (10 loc) • 410 B
text/typescript
import angular from 'angular'
import ganttModule from '../../index'
import cornerDirective from './corner.directive'
import cornerAreaDirective from './cornerArea.directive'
const pluginModule = 'gantt.corner'
require('./corner.css')
angular.module(pluginModule, [ganttModule])
.directive('ganttCorner', cornerDirective)
.directive('ganttCornerArea', cornerAreaDirective)
export default pluginModule