mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Css font properties
This commit is contained in:
32
ui/enums/enums.d.ts
vendored
32
ui/enums/enums.d.ts
vendored
@@ -370,4 +370,36 @@
|
||||
*/
|
||||
export var popup: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Specifies different font styles.
|
||||
*/
|
||||
export module FontStyle {
|
||||
/**
|
||||
* Normal font style.
|
||||
*/
|
||||
export var normal: string;
|
||||
|
||||
/**
|
||||
* Italic font style.
|
||||
*/
|
||||
export var italic: string;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Specifies different font weights.
|
||||
*/
|
||||
export module FontWeight {
|
||||
/**
|
||||
* Normal font weight.
|
||||
*/
|
||||
export var normal: string;
|
||||
|
||||
/**
|
||||
* Bold font weight.
|
||||
*/
|
||||
export var bold: string;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -102,4 +102,14 @@ export module MenuItemPosition {
|
||||
export module ImageFormat {
|
||||
export var png: string = "png";
|
||||
export var jpeg: string = "jpeg";
|
||||
}
|
||||
}
|
||||
|
||||
export module FontStyle {
|
||||
export var normal: string = "normal";
|
||||
export var italic: string = "italic";
|
||||
}
|
||||
|
||||
export module FontWeight {
|
||||
export var normal: string = "normal";
|
||||
export var bold: string = "bold";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user