mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
12 lines
680 B
TypeScript
12 lines
680 B
TypeScript
//@private
|
|
import * as buttonModule from "ui/button";
|
|
import * as colorModule from "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;
|