From d481fd51476125f6e99615399b018a138f192b49 Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Wed, 13 Jun 2018 12:47:29 -0700 Subject: [PATCH] fix(types): type FrameManager in Page.js (#2718) --- lib/Page.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Page.js b/lib/Page.js index 54a8383c..c507c03a 100644 --- a/lib/Page.js +++ b/lib/Page.js @@ -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);