UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

21 lines (20 loc) 450 B
import { Base, Type } from "./type"; import { Color } from "./Color"; /** * @hidden */ export declare class GradientStop extends Base { static $t: Type; constructor(); offset: number; clone(): GradientStop; _fill: string; get fill(): string; set fill(a: string); private d; private g; get color(): Color; set color(a: Color); equals(a: any): boolean; getHashCode(): number; }