package webextension_polyfill.windows;
/**
Specifies whether the $(ref:windows.Window) returned should contain a list of the $(ref:tabs.Tab) objects.
**/
typedef GetInfo = {
/**
If true, the $(ref:windows.Window) returned will have a tabs property that contains a list of the $(ref:tabs.
Tab) objects. The Tab
objects only contain the url
, title
and
favIconUrl
properties if the extension's manifest file includes the "tabs"
permission.
Optional.
**/
@:optional
var populate : Bool;
};