aboutsummaryrefslogtreecommitdiff
path: root/test/content/mock/MockFocusPresenter.ts
blob: 43454d0b1e85ff8f44c393daa0e583ba280c75db (plain) (blame)
1
2
3
4
5
6
7
import FocusPresenter from "../../../src/content/presenters/FocusPresenter";

export default class MockFocusPresenter implements FocusPresenter {
  focusFirstElement(): boolean {
    throw new Error("not implemented");
  }
}