mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
stylers removed
This commit is contained in:
20
utils/utils.d.ts
vendored
20
utils/utils.d.ts
vendored
@ -68,6 +68,10 @@
|
||||
* Module with android specific utilities.
|
||||
*/
|
||||
module ad {
|
||||
export function setTextTransform(view, value: string);
|
||||
export function setWhiteSpace(view, value: string);
|
||||
export function setTextDecoration(view, value: string);
|
||||
|
||||
/**
|
||||
* Gets the native Android application instance.
|
||||
*/
|
||||
@ -141,6 +145,22 @@
|
||||
* Module with ios specific utilities.
|
||||
*/
|
||||
module ios {
|
||||
|
||||
export function setWhiteSpace(view, value: string, parentView?: any);
|
||||
export function setTextTransform(view, value: string);
|
||||
export function setTextDecoration(view, value: string);
|
||||
export function setTextAlignment(view, value: string);
|
||||
|
||||
export interface TextUIView {
|
||||
font: any;
|
||||
textAlignment: number;
|
||||
textColor: any;
|
||||
text: string;
|
||||
attributedText: any;
|
||||
lineBreakMode: number;
|
||||
numberOfLines: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* Utility module dealing with some iOS collections.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user