Skip to content

Commit

Permalink
chore: move Frame to Frame.ts (#8806)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf committed Aug 17, 2022
1 parent b9c8479 commit 51b2f05
Show file tree
Hide file tree
Showing 15 changed files with 998 additions and 1,026 deletions.
3 changes: 2 additions & 1 deletion src/common/ElementHandle.ts
Expand Up @@ -2,7 +2,8 @@ import {Protocol} from 'devtools-protocol';
import {assert} from '../util/assert.js';
import {CDPSession} from './Connection.js';
import {ExecutionContext} from './ExecutionContext.js';
import {Frame, FrameManager} from './FrameManager.js';
import {FrameManager} from './FrameManager.js';
import {Frame} from './Frame.js';
import {
MAIN_WORLD,
PUPPETEER_WORLD,
Expand Down
2 changes: 1 addition & 1 deletion src/common/ExecutionContext.ts
Expand Up @@ -17,7 +17,7 @@
import {Protocol} from 'devtools-protocol';
import {assert} from '../util/assert.js';
import {CDPSession} from './Connection.js';
import {Frame} from './FrameManager.js';
import {Frame} from './Frame.js';
import {IsolatedWorld} from './IsolatedWorld.js';
import {JSHandle} from './JSHandle.js';
import {EvaluateFunc, HandleFor} from './types.js';
Expand Down

0 comments on commit 51b2f05

Please sign in to comment.