UNPKG

@true-directive/grid

Version:

Angular Data Grid from Yopsilon.

17 lines (16 loc) 576 B
/** * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company. * @link https://truedirective.com/ * @license MIT */ import { ElementRef, EventEmitter } from '@angular/core'; import { GridStateService } from './grid-state.service'; import { ColumnBand } from '@true-directive/base'; export declare class GridHeaderBandComponent { state: GridStateService; elementRef: ElementRef; band: ColumnBand; bandTouchstart: EventEmitter<any>; bandMouseDown(e: any): void; constructor(state: GridStateService, elementRef: ElementRef); }