@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
23 lines • 699 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';
const NB_INPUT_COMPONENTS = [
NbInputDirective,
];
let NbInputModule = class NbInputModule {
};
NbInputModule = __decorate([
NgModule({
imports: [NbSharedModule],
declarations: NB_INPUT_COMPONENTS,
exports: NB_INPUT_COMPONENTS,
})
], NbInputModule);
export { NbInputModule };
//# sourceMappingURL=input.module.js.map