import FindClient, { FindResult, } from "../../../src/background/clients/FindClient"; export default class MockFindClient implements FindClient { highlightAll(): Promise { throw new Error("not implemented"); } removeHighlights(): Promise { throw new Error("not implemented"); } selectKeyword( _tabId: number, _rangeData: browser.find.RangeData ): Promise { throw new Error("not implemented"); } startFind(_keyword: string): Promise { throw new Error("not implemented"); } }