typedef: add incognito open option

This commit is contained in:
CanadaHonk 2023-04-12 00:36:56 +01:00
parent d56f69abcb
commit 0a940cbe61

6
gluon.d.ts vendored
View File

@ -555,6 +555,12 @@ type OpenOptions = {
/** Set a custom user agent for the browser engine to use. */
userAgent?: string,
/**
* Do not persist browser data in the regular data directory.
* @default false
*/
incognito?: boolean,
};
/**