mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
declare module "ui/text-base" {
|
|
import view = require("ui/core/view");
|
|
import dependencyObservable = require("ui/core/dependency-observable");
|
|
import formattedString = require("text/formatted-string");
|
|
|
|
/**
|
|
* Represents the base class for all text views.
|
|
*/
|
|
export class TextBase extends view.View {
|
|
|
|
/**
|
|
* Dependency property used to support binding operations for the text of the current text-base instance.
|
|
*/
|
|
public static textProperty: dependencyObservable.Property;
|
|
|
|
/**
|
|
* Dependency property used to support binding operations for the formatted text of the current text-base instance.
|
|
*/
|
|
public static formattedTextProperty: dependencyObservable.Property;
|
|
|
|
constructor(options?: Options);
|
|
|
|
/**
|
|
* Gets or sets the text.
|
|
*/
|
|
text: string;
|
|
|
|
/**
|
|
* Gets or sets a formatted string.
|
|
*/
|
|
formattedText: formattedString.FormattedString;
|
|
}
|
|
|
|
/**
|
|
* Defines interface for an optional parameter used to create a text-base component.
|
|
*/
|
|
export interface Options extends view.Options {
|
|
/**
|
|
* Gets or sets the text.
|
|
*/
|
|
text?: string;
|
|
}
|
|
} |