mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
13 lines
683 B
TypeScript
13 lines
683 B
TypeScript
//@private
|
|
import buttonModule = require("ui/button");
|
|
import colorModule = require("color");
|
|
|
|
export declare function getNativeText(button: buttonModule.Button): string;
|
|
export declare function getNativeTextWrap(button: buttonModule.Button): boolean;
|
|
export declare function getNativeFontSize(button: buttonModule.Button): number;
|
|
export declare function getNativeColor(button: buttonModule.Button): colorModule.Color;
|
|
export declare function getNativeBackgroundColor(button: buttonModule.Button): colorModule.Color;
|
|
export declare function getNativeTextAlignment(button: buttonModule.Button): string;
|
|
export declare function performNativeClick(button: buttonModule.Button): void;
|
|
|