igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
23 lines (22 loc) • 448 B
TypeScript
import { Type } from "./type";
/**
* Describes available highlighting states
*/
export declare enum HighlightingState {
/**
* Highlight is transitioning out.
*/
outward = 0,
/**
* Highlight is transitioning in.
*/
inward = 1,
/**
* Highlight is active and not transitioning in or out.
*/
Static = 2
}
/**
* @hidden
*/
export declare let HighlightingState_$type: Type;