UNPKG

465 BTypeScriptView Raw
1import { OnChanges, ElementRef, SimpleChanges } from '@angular/core';
2import { Series } from '../models/chart-data.model';
3export declare class LineComponent implements OnChanges {
4 private element;
5 path: string;
6 stroke: string;
7 data: Series;
8 fill: string;
9 animations: boolean;
10 initialized: boolean;
11 initialPath: string;
12 constructor(element: ElementRef);
13 ngOnChanges(changes: SimpleChanges): void;
14 updatePathEl(): void;
15}