mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
16 lines
341 B
TypeScript
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;
|
|
}
|