소스 검색

Tell prop's type with generic. Addition to #4597 (#4621)

Vadim Laletin 5 년 전
부모
커밋
34f37aa7c5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lib/src/Navigation.ts

+ 1
- 1
lib/src/Navigation.ts 파일 보기

@@ -115,7 +115,7 @@ export class NavigationRoot {
115 115
   /**
116 116
    * Show a screen as a modal.
117 117
    */
118
-  public showModal(layout: Layout): Promise<any> {
118
+  public showModal<P>(layout: Layout<P>): Promise<any> {
119 119
     return this.commands.showModal(layout);
120 120
   }
121 121