Files
NativeScript/ui/styling/visual-state-constants.d.ts
2015-03-03 10:34:40 +02:00

16 lines
341 B
TypeScript

declare module "ui/styling/visual-state-constants" {
/**
* Denotes Normal state of an UIControl.
*/
export var Normal: string;
/**
* Denotes Hovered state of an UIControl.
*/
export var Hovered: string;
/**
* Denotes Pressed state of an UIControl.
*/
export var Pressed: string;
}