mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
Fix missing private _addChildFromBuilder
This commit is contained in:
6
tns-core-modules/ui/text-base/text-base.d.ts
vendored
6
tns-core-modules/ui/text-base/text-base.d.ts
vendored
@ -73,8 +73,7 @@ export class TextBase extends View implements AddChildFromBuilder {
|
||||
* Specify the top padding of this layout.
|
||||
*/
|
||||
paddingTop: Length;
|
||||
|
||||
//@private
|
||||
|
||||
/**
|
||||
* Called for every child element declared in xml.
|
||||
* This method will add a child element (value) to current element.
|
||||
@ -84,6 +83,7 @@ export class TextBase extends View implements AddChildFromBuilder {
|
||||
*/
|
||||
_addChildFromBuilder(name: string, value: any): void;
|
||||
|
||||
//@private
|
||||
/**
|
||||
* Called when the text property is changed to request layout.
|
||||
* @private
|
||||
@ -112,4 +112,4 @@ export const whiteSpaceProperty: CssProperty<Style, WhiteSpace>;
|
||||
export const letterSpacingProperty: CssProperty<Style, number>;
|
||||
|
||||
//Used by tab view
|
||||
export function getTransformedText(text: string, textTransform: TextTransform): string;
|
||||
export function getTransformedText(text: string, textTransform: TextTransform): string;
|
||||
|
Reference in New Issue
Block a user