Harsh Rohila
Harsh Rohila
```childView.setWebViewClient(new WebViewClient() { // NB: wait for about:blank before dismissing public void onPageFinished(WebView view, String url) { if (dialog != null) { dialog.dismiss(); dialog = null; } if (url.equals(new String("about:blank")))...
The API can look like this ```typescript withAutoReconnect(options: AutoReconnectOptions) interface AutoReconnectOptions { getProtocols: () => Promise backoff: Backoff } ```
Looking at code, found easy way of doing this, allowing protocol value to be a function returning promise Created PR for that https://github.com/jjxxs/websocket-ts/pull/18
With 2.7.1 stencil core version, serve command worked, but other commands - test, e2e and build were failing And I was getting warning that peer dependency ^2.15.1 is required for...