Module Chrome_lwt__.Windows_chrome_lwt

include Windows_chrome_common
class type window = object ... end
class type getInfo = object ... end
class type createData = object ... end
class type updateInfo = object ... end
class type windows = object ... end
val make_createData : ?⁠url:string -> ?⁠url_l:string list -> ?⁠tabId:int -> ?⁠left:int -> ?⁠top:int -> ?⁠width:int -> ?⁠height:int -> ?⁠focused:bool -> ?⁠typ:string -> ?⁠state:string -> ?⁠selfOpener:bool -> unit -> createData Js_min.t
val make_updateInfo : ?⁠left:int -> ?⁠top:int -> ?⁠width:int -> ?⁠height:int -> ?⁠focused:bool -> ?⁠drawAttention:bool -> ?⁠state:string -> unit -> updateInfo Js_min.t
val windows : windows Js_min.t
val onCreated : (window Js_min.t -> unit) -> unit
val onRemoved : (int -> unit) -> unit
val onFocusChanged : (int -> unit) -> unit
val get : ?⁠info:getInfo Js_min.t -> int -> window Js_min.t Lwt.t
val getCurrent : ?⁠info:getInfo Js_min.t -> unit -> window Js_min.t Lwt.t
val getLastFocused : ?⁠info:getInfo Js_min.t -> unit -> window Js_min.t Lwt.t
val getAll : ?⁠info:getInfo Js_min.t -> unit -> window Js_min.t list Lwt.t
val create : ?⁠info:createData Js_min.t -> ?⁠callback:(window Js_min.t -> 'a) -> unit -> 'a option Lwt.t
val update : ?⁠callback:(window Js_min.t -> 'a) -> int -> updateInfo Js_min.t -> 'a option Lwt.t
val remove : ?⁠callback:(unit -> 'a) -> int -> 'a option Lwt.t