UNPKG

434 BTypeScriptView Raw
1import { OnChanges, SimpleChanges } from '@angular/core';
2import { BarOrientation } from './types/bar-orientation.enum';
3import { Gradient } from './types/gradient.interface';
4export declare class SvgLinearGradientComponent implements OnChanges {
5 orientation: BarOrientation;
6 name: string;
7 stops: Gradient[];
8 x1: string;
9 x2: string;
10 y1: string;
11 y2: string;
12 ngOnChanges(changes: SimpleChanges): void;
13}