Skip to content
This repository has been archived by the owner on Jul 8, 2023. It is now read-only.

Commit

Permalink
✔️ fix import of EventEmitter and TS typings
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsweet committed Mar 13, 2020
1 parent 4f04195 commit 4958c64
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Marionette.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import EventEmitter from 'events'
import { EventEmitter } from 'events'
import { Socket } from 'net'
import { TJsonArray, TJsonMap, TJsonValue } from 'typeon'
import FoxrError from './Error'
Expand Down
2 changes: 1 addition & 1 deletion src/api/Browser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import EventEmitter from 'events'
import { EventEmitter } from 'events'
import Page from './Page'
import {
TSend,
Expand Down
2 changes: 1 addition & 1 deletion src/api/JSHandle.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import EventEmitter from 'events'
import { EventEmitter } from 'events'
import Page from './Page'
import { TJSHandleId, TSend } from './types'
import { getElementId } from '../utils'
Expand Down
2 changes: 1 addition & 1 deletion src/api/Page.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable no-use-before-define */
import EventEmitter from 'events'
import { EventEmitter } from 'events'
import { TJsonValue } from 'typeon'
import { pWriteFile, mapEvaluateArgs } from '../utils'
import Browser from './Browser'
Expand Down

0 comments on commit 4958c64

Please sign in to comment.