Files
shortcutter/externs/webextension_polyfill/networkstatus/Static.hx

12 lines
338 B
Haxe

package webextension_polyfill.networkstatus;
typedef Static = {
/**
Returns the $(ref:NetworkLinkInfo} of the current network connection.
**/
function getLinkInfo():Void;
/**
Fired when the network connection state changes.
**/
var onConnectionChanged : webextension_polyfill.events.Event<(details:NetworkLinkInfo) -> Void>;
};