Module WebView-BsReactNative.EventTypes

include { ... };
include module type of { ... };
type t;
let t: ?⁠url:string => ?⁠title:string => ?⁠loading:bool => ?⁠canGoBack:bool => ?⁠canGoForward:bool => unit => t;
let url: t => option(string);
let urlGet: t => option(string);
let title: t => option(string);
let titleGet: t => option(string);
let loading: t => option(bool);
let loadingGet: t => option(bool);
let canGoBack: t => option(bool);
let canGoBackGet: t => option(bool);
let canGoForward: t => option(bool);
let canGoForwardGet: t => option(bool);