@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
26 lines • 798 B
JavaScript
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { __decorate } from "tslib";
import { NgModule } from '@angular/core';
import { NbSharedModule } from '../shared/shared.module';
import { NbInputDirective } from './input.directive';
var NB_INPUT_COMPONENTS = [
NbInputDirective,
];
var NbInputModule = /** @class */ (function () {
function NbInputModule() {
}
NbInputModule = __decorate([
NgModule({
imports: [NbSharedModule],
declarations: NB_INPUT_COMPONENTS,
exports: NB_INPUT_COMPONENTS,
})
], NbInputModule);
return NbInputModule;
}());
export { NbInputModule };
//# sourceMappingURL=input.module.js.map