blob: a035cc5501afd7876618d69f9a5f9e2732569dfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import FindMasterClient from "../../../src/content/client/FindMasterClient";
export default class MockFindMasterClient implements FindMasterClient {
findNext(): void {
throw new Error("not implemented");
}
findPrev(): void {
throw new Error("not implemented");
}
}
|