Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/device/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
import { teevolutionProfileForCid } from "@openmouse/protocol/teevolution";
import { VgnF2HidClient } from "@openmouse/protocol/drivers/vgn/hid";
import { KeychronHidClient } from "@openmouse/protocol/drivers/keychron/hid";
import { KeychronM6HidClient } from "@openmouse/protocol/drivers/keychron/m6-hid";

Check failure on line 112 in src/device/controller.ts

View workflow job for this annotation

GitHub Actions / check

Cannot find module '@openmouse/protocol/drivers/keychron/m6-hid' or its corresponding type declarations.
import { FantechHidClient } from "@openmouse/protocol/drivers/fantech/hid";
import { WallhackMouseHidClient } from "@openmouse/protocol/drivers/wallhack/mouse-hid";
import { WallhackKeyboardHidClient } from "@openmouse/protocol/drivers/wallhack/keyboard-hid";
Expand Down Expand Up @@ -163,7 +164,7 @@

const DM_CLASSES = [WLMouseHidClient, LamzuHidClient, AtkHidClient, NinjutsoHidClient] as const;
const RAZER_CLASSES = [RazerHidClient, RazerViperMiniHidClient, RazerViperHidClient, RazerCobraHidClient] as const;
const NEEDS_OPEN = [TeevolutionHidClient, VgnF2HidClient, KeychronHidClient, ModdoHidClient, ZaunkoenigHidClient, FantechHidClient, WallhackMouseHidClient, WallhackKeyboardHidClient] as const;
const NEEDS_OPEN = [TeevolutionHidClient, VgnF2HidClient, KeychronHidClient, KeychronM6HidClient, ModdoHidClient, ZaunkoenigHidClient, FantechHidClient, WallhackMouseHidClient, WallhackKeyboardHidClient] as const;
const DEDICATED = [
...DM_CLASSES, ...RAZER_CLASSES, ...NEEDS_OPEN,
EggOp1HidClient, LogitechHidppClient, OrbitalHidClient, RazerViperV4ProHidClient, FinalmouseHidClient,
Expand Down
Loading