Skip to content

Commit 587ad1a

Browse files
committed
fix(EAV-297): prompter imports
1 parent cc230ca commit 587ad1a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/webui/src/client/ui/Prompter/controller/shuttle-webhid-device.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import { ControllerAbstract } from './lib'
2-
import { AccessRequestCallback, PrompterViewInner } from '../PrompterView'
3-
import { logger } from '../../../../lib/logging'
2+
import { AccessRequestCallback, PrompterViewContent } from '../PrompterView'
43

54
import { getOpenedDevices, requestAccess, setupShuttle, Shuttle } from 'shuttle-webhid'
5+
import { logger } from '../../../lib/logging'
66

77
/**
88
* This class handles control of the prompter using Contour Shuttle / Multimedia Controller line of devices
99
*/
1010
export class ShuttleWebHidController extends ControllerAbstract {
11-
private prompterView: PrompterViewInner
11+
private prompterView: PrompterViewContent
1212

1313
private speedMap = [0, 1, 2, 3, 5, 7, 9, 30]
1414

@@ -25,7 +25,7 @@ export class ShuttleWebHidController extends ControllerAbstract {
2525
deviceName: 'Contour Shuttle',
2626
}
2727

28-
constructor(view: PrompterViewInner) {
28+
constructor(view: PrompterViewContent) {
2929
super()
3030
this.prompterView = view
3131

0 commit comments

Comments
 (0)