mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
fix(types): add jsdoc for the DOMWorld on frames (#4158)
This commit is contained in:
parent
26abcda668
commit
0c8ace2fab
@ -367,7 +367,9 @@ class Frame {
|
|||||||
this._loaderId = '';
|
this._loaderId = '';
|
||||||
/** @type {!Set<string>} */
|
/** @type {!Set<string>} */
|
||||||
this._lifecycleEvents = new Set();
|
this._lifecycleEvents = new Set();
|
||||||
|
/** @type {!DOMWorld} */
|
||||||
this._mainWorld = new DOMWorld(frameManager, this, frameManager._timeoutSettings);
|
this._mainWorld = new DOMWorld(frameManager, this, frameManager._timeoutSettings);
|
||||||
|
/** @type {!DOMWorld} */
|
||||||
this._secondaryWorld = new DOMWorld(frameManager, this, frameManager._timeoutSettings);
|
this._secondaryWorld = new DOMWorld(frameManager, this, frameManager._timeoutSettings);
|
||||||
|
|
||||||
/** @type {!Set<!Frame>} */
|
/** @type {!Set<!Frame>} */
|
||||||
|
Loading…
Reference in New Issue
Block a user