fix(types): type FrameManager in Page.js (#2718)

This commit is contained in:
Joel Einbinder 2018-06-13 12:47:29 -07:00 committed by Andrey Lushnikov
parent 147f98d1f0
commit d481fd5147

View File

@ -78,6 +78,7 @@ class Page extends EventEmitter {
this._keyboard = new Keyboard(client);
this._mouse = new Mouse(client, this._keyboard);
this._touchscreen = new Touchscreen(client, this._keyboard);
/** @type {!FrameManager} */
this._frameManager = new FrameManager(client, frameTree, this);
this._networkManager = new NetworkManager(client, this._frameManager);
this._emulationManager = new EmulationManager(client);