mirror of
https://github.com/status-im/react-native-webview.git
synced 2026-08-31 19:51:10 +00:00
13 lines
343 B
Java
13 lines
343 B
Java
package com.reactnativecommunity.webview;
|
|
|
|
import android.webkit.WebView;
|
|
|
|
/**
|
|
* Implement this interface in order to config your {@link WebView}. An instance of that
|
|
* implementation will have to be given as a constructor argument to {@link RNCWebViewManager}.
|
|
*/
|
|
public interface WebViewConfig {
|
|
|
|
void configWebView(WebView webView);
|
|
}
|