UNPKG

348 BTypeScriptView Raw
1import { AfterViewInit, ElementRef, OnChanges } from '@angular/core';
2import { Grid } from '../../../lib/grid';
3export declare class ActionsTitleComponent implements AfterViewInit, OnChanges {
4 private ref;
5 grid: Grid;
6 actionsColumnTitle: string;
7 constructor(ref: ElementRef);
8 ngAfterViewInit(): void;
9 ngOnChanges(): void;
10}