Skip to content

Commit 8422e5f

Browse files
committed
Import fix
1 parent b7f7a2f commit 8422e5f

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/app/src/components/inputs/traceLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Element } from '@core/element'
22
import { html } from 'lit'
33
import { customElement, property } from 'lit/decorators.js'
4-
import type { TraceLog } from '@wdio/devtools-service'
4+
import type { TraceLog } from '@wdio/devtools-service/types'
55

66
@customElement('wdio-devtools-trace-loader')
77
export class DevtoolsTraceLoader extends Element {

packages/app/src/components/workbench/actionItems/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { html } from 'lit'
22
import { customElement, property } from 'lit/decorators.js'
33

4-
import type { CommandLog } from '@wdio/devtools-service'
4+
import type { CommandLog } from '@wdio/devtools-service/types'
55

66
import { ActionItem, ICON_CLASS } from './item.js'
77

packages/app/src/components/workbench/actionItems/item.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Element } from '@core/element'
22
import { html, css } from 'lit'
33
import { property } from 'lit/decorators.js'
4-
import type { CommandLog } from '@wdio/devtools-service'
4+
import type { CommandLog } from '@wdio/devtools-service/types'
55

66
export type ActionEntry = TraceMutation | CommandLog
77

packages/app/src/components/workbench/logs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Element } from '@core/element'
22
import { html, css } from 'lit'
33
import { customElement, property } from 'lit/decorators.js'
44

5-
import type { CommandLog } from '@wdio/devtools-service'
5+
import type { CommandLog } from '@wdio/devtools-service/types'
66
import type { CommandEndpoint } from '@wdio/protocols'
77

88
import './list.js'

packages/app/src/controller/DataManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createContext, ContextProvider } from '@lit/context'
22
import type { ReactiveController, ReactiveControllerHost } from 'lit'
3-
import type { Metadata, CommandLog, TraceLog } from '@wdio/devtools-service'
3+
import type { Metadata, CommandLog, TraceLog } from '@wdio/devtools-service/types'
44

55
const CACHE_ID = 'wdio-trace-cache'
66

0 commit comments

Comments
 (0)