igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
35 lines (34 loc) • 945 B
TypeScript
import { ValueType, Nullable$1, Type } from "./type";
/**
* @hidden
*/
export declare class Color extends ValueType {
static $t: Type;
constructor();
private _a;
get l(): number;
set l(a: number);
private _r;
get o(): number;
set o(a: number);
private _g;
get n(): number;
set n(a: number);
private _b;
get m(): number;
set m(a: number);
private _colorString;
get colorString(): string;
set colorString(a: string);
private a;
static create(a: any): Color;
private s;
private r;
static u(a_: number, r_: number, g_: number, b_: number): Color;
equals(a: any): boolean;
getHashCode(): number;
static d(a: Color, b: Color): boolean;
static e(a: Nullable$1<Color>, b: Nullable$1<Color>): boolean;
static b(a: Color, b: Color): boolean;
static c(a: Nullable$1<Color>, b: Nullable$1<Color>): boolean;
}