Files
NativeScript/tns-core-modules/ui/styling/visual-state-constants.d.ts
Panayot Cankov e135c20b14 Rename the files
2016-05-26 14:30:25 +03: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;
}