fix(types): add jsdoc for the DOMWorld on frames (#4158)

This commit is contained in:
Joel Einbinder 2019-03-12 15:14:41 -07:00 committed by Andrey Lushnikov
parent 26abcda668
commit 0c8ace2fab

View File

@ -367,7 +367,9 @@ class Frame {
this._loaderId = '';
/** @type {!Set<string>} */
this._lifecycleEvents = new Set();
/** @type {!DOMWorld} */
this._mainWorld = new DOMWorld(frameManager, this, frameManager._timeoutSettings);
/** @type {!DOMWorld} */
this._secondaryWorld = new DOMWorld(frameManager, this, frameManager._timeoutSettings);
/** @type {!Set<!Frame>} */