igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
19 lines (18 loc) • 349 B
TypeScript
import { Type } from "./type";
/**
* Describes available modes for color interpolation.
*/
export declare enum InterpolationMode {
/**
* Interpolation in RGB space.
*/
RGB = 0,
/**
* Interpolation in HSV space.
*/
HSV = 1
}
/**
* @hidden
*/
export declare let InterpolationMode_$type: Type;