ng-tree-antd
Version:
Angular for tinymce
21 lines • 793 B
JavaScript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { TreeModule } from 'angular-tree-component';
import { NzTreeComponent } from './components/nz-tree.component';
export { NzTreeComponent } from './components/nz-tree.component';
var NzTreeModule = (function () {
function NzTreeModule() {
}
NzTreeModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule, TreeModule],
declarations: [NzTreeComponent],
exports: [NzTreeComponent]
},] },
];
/** @nocollapse */
NzTreeModule.ctorParameters = function () { return []; };
return NzTreeModule;
}());
export { NzTreeModule };
//# sourceMappingURL=index.js.map