aboutsummaryrefslogtreecommitdiff
path: root/test/content/mock/MockFollowMasterClient.ts
blob: fc660d540b875f7d42452f5c5a89ce4d1954c843 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import FollowMasterClient from "../../../src/content/client/FollowMasterClient";
import Key from "../../../src/shared/settings/Key";

export default class MockFollowMasterClient implements FollowMasterClient {
  responseHintCount(_count: number): void {
    throw new Error("not implemented");
  }

  sendKey(_key: Key): void {
    throw new Error("not implemented");
  }

  startFollow(_newTab: boolean, _background: boolean): void {
    throw new Error("not implemented");
  }
}