소스 검색

no message (#4885)

Yedidya Kennard 5 년 전
부모
커밋
5ba7ccb75f
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8
    0
      lib/src/interfaces/Layout.ts

+ 8
- 0
lib/src/interfaces/Layout.ts 파일 보기

@@ -24,6 +24,10 @@ export interface LayoutStackChildren {
24 24
    * Set component
25 25
    */
26 26
   component?: LayoutComponent;
27
+  /**
28
+   * Set the external component
29
+   */
30
+  externalComponent?: ExternalComponent;
27 31
 }
28 32
 
29 33
 export interface LayoutStack {
@@ -51,6 +55,10 @@ export interface LayoutBottomTabsChildren {
51 55
    * Set component
52 56
    */
53 57
   component?: LayoutComponent;
58
+  /**
59
+   * Set the external component
60
+   */
61
+  externalComponent?: ExternalComponent;
54 62
 }
55 63
 
56 64
 export interface LayoutBottomTabs {