소스 검색

feat(types): Post message types (#166)

Chet Corcos 5 년 전
부모
커밋
0ff0fd3ed6
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      typings/index.d.ts

+ 1
- 0
typings/index.d.ts 파일 보기

@@ -429,5 +429,6 @@ export class WebView extends Component<WebViewSharedProps> {
429 429
   public goBack: () => void;
430 430
   public reload: () => void;
431 431
   public stopLoading: () => void;
432
+  public postMessage: (msg: string) => void
432 433
   public injectJavaScript: (js: string) => void
433 434
 }