typedef: add OpenOptions.forceEngine

This commit is contained in:
CanadaHonk 2023-01-07 17:44:22 +00:00
parent c41d31a52f
commit a0fb2e1102

5
gluon.d.ts vendored
View File

@ -215,8 +215,11 @@ type OpenOptions = {
/** Function to evaluate in the web context once loaded. */ /** Function to evaluate in the web context once loaded. */
onLoad?: Function, onLoad?: Function,
/** Force Gluon to use a browser instead of automatically finding. */ /** Force Gluon to use a specific browser instead of automatically finding one itself. */
forceBrowser?: Browser, forceBrowser?: Browser,
/** Force Gluon to use a specific browser engine instead of automatically finding a browser itself. */
forceEngine?: BrowserEngine
}; };
/** /**