From d7638c3ae4dbfe728234591544d6c874dbec4dae Mon Sep 17 00:00:00 2001 From: Panayot Cankov Date: Mon, 24 Apr 2017 10:24:05 +0300 Subject: [PATCH] Fix missing private _addChildFromBuilder --- tns-core-modules/ui/text-base/text-base.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tns-core-modules/ui/text-base/text-base.d.ts b/tns-core-modules/ui/text-base/text-base.d.ts index c23b45dab..36139caaa 100644 --- a/tns-core-modules/ui/text-base/text-base.d.ts +++ b/tns-core-modules/ui/text-base/text-base.d.ts @@ -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; export const letterSpacingProperty: CssProperty; //Used by tab view -export function getTransformedText(text: string, textTransform: TextTransform): string; \ No newline at end of file +export function getTransformedText(text: string, textTransform: TextTransform): string;