@progress/kendo-angular-common
Version:
Kendo UI for Angular - Utility Package
26 lines (25 loc) • 1.05 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2020 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import * as tslib_1 from "tslib";
import { NgModule } from '@angular/core';
import { ResizeSensorComponent } from './resize-sensor.component';
import { ResizeBatchService } from './resize-batch.service';
var COMPONENT_DIRECTIVES = [ResizeSensorComponent];
/**
* Resize Sensor module
*/
var ResizeSensorModule = /** @class */ (function () {
function ResizeSensorModule() {
}
ResizeSensorModule = tslib_1.__decorate([
NgModule({
declarations: [COMPONENT_DIRECTIVES],
exports: [COMPONENT_DIRECTIVES],
providers: [ResizeBatchService]
})
], ResizeSensorModule);
return ResizeSensorModule;
}());
export { ResizeSensorModule };