UNPKG

870 BTypeScriptView Raw
1import { OnChanges, SimpleChanges } from '@angular/core';
2import { BarOrientation } from './types/bar-orientation.enum';
3import { Gradient } from './types/gradient.interface';
4import * as i0 from "@angular/core";
5export declare class SvgLinearGradientComponent implements OnChanges {
6 orientation: BarOrientation;
7 name: string;
8 stops: Gradient[];
9 x1: string;
10 x2: string;
11 y1: string;
12 y2: string;
13 ngOnChanges(changes: SimpleChanges): void;
14 static ɵfac: i0.ɵɵFactoryDeclaration<SvgLinearGradientComponent, never>;
15 static ɵcmp: i0.ɵɵComponentDeclaration<SvgLinearGradientComponent, "g[ngx-charts-svg-linear-gradient]", never, { "orientation": { "alias": "orientation"; "required": false; }; "name": { "alias": "name"; "required": false; }; "stops": { "alias": "stops"; "required": false; }; }, {}, never, never, false, never>;
16}