blob: dd6d8f36311f81a0b43ac656f137a0efa3f9cccf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import FindClient from "../../../src/background/clients/FindClient";
export default class MockFindClient implements FindClient {
findNext(
_tabId: number,
_frameId: number,
_keyword: string
): Promise<boolean> {
throw new Error("not implemented");
}
findPrev(
_tabId: number,
_frameId: number,
_keyword: string
): Promise<boolean> {
throw new Error("not implemented");
}
clearSelection(_tabId: number, _frameId: number): Promise<void> {
throw new Error("not implemented");
}
}
|