blob: bd25a277972d6081b5dc515e64197c025aebf638 (
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
24
|
import FindClient, {
FindResult,
} from "../../../src/background/clients/FindClient";
export default class MockFindClient implements FindClient {
highlightAll(): Promise<void> {
throw new Error("not implemented");
}
removeHighlights(): Promise<void> {
throw new Error("not implemented");
}
selectKeyword(
_tabId: number,
_rangeData: browser.find.RangeData
): Promise<void> {
throw new Error("not implemented");
}
startFind(_keyword: string): Promise<FindResult> {
throw new Error("not implemented");
}
}
|