Skip to content

Commit 7cdd1c4

Browse files
committed
chore: prevent tsc error
1 parent d7d91e4 commit 7cdd1c4

File tree

1 file changed

+5
-2
lines changed
  • src/core/tab-navigation-base/tab-strip

1 file changed

+5
-2
lines changed

src/core/tab-navigation-base/tab-strip/index.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,11 @@ export class TabStrip extends View implements TabStripDefinition, AddChildFromBu
4545
public highlightColor: Color;
4646
public selectedItemColor: Color;
4747
public unSelectedItemColor: Color;
48-
protected _hasImage: boolean;
49-
protected _hasTitle: boolean;
48+
49+
/** @hidden */
50+
_hasImage: boolean;
51+
/** @hidden */
52+
_hasTitle: boolean;
5053

5154
public eachChild(callback: (child: ViewBase) => boolean) {
5255
const items = this.items;

0 commit comments

Comments
 (0)