ng2-qgrid
Version:
Angular Grid
17 lines (16 loc) • 414 B
TypeScript
import { DoCheck, OnInit } from '@angular/core';
import { Line } from './model/line';
import { Node } from './model/node';
export declare class EbExpressionComponent implements OnInit, DoCheck {
private watchers;
node: Node;
line: Line;
model: any;
context: {
$implicit: any;
node: Node;
line: Line;
};
ngOnInit(): void;
ngDoCheck(): void;
}