chore(web): fix NodeProctor device ref

This commit is contained in:
Marc Durdin 2022-04-01 07:24:08 +11:00
parent 32584010b5
commit be42e068f5

View file

@ -4,13 +4,11 @@
namespace KMWRecorder {
export class NodeProctor extends Proctor {
private keyboard: com.keyman.keyboards.Keyboard;
private device: com.keyman.utils.DeviceSpec;
public __debug = false;
constructor(keyboard: com.keyman.keyboards.Keyboard, device: com.keyman.utils.DeviceSpec, assert: AssertCallback) {
super(device, assert);
this.device = device;
this.keyboard = keyboard;
}