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

This commit is contained in:
Chet Corcos 2018-11-22 06:10:10 -08:00 committed by Thibault Malbranche
parent 3b247e3f1a
commit 0ff0fd3ed6
1 changed files with 1 additions and 0 deletions

1
typings/index.d.ts vendored
View File

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