blob: d1f8fc321041302104b3076ef06dc378533437f3 (
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 ConsoleClient from "../../../src/background/infrastructures/ConsoleClient";
export default class MockConsoleClient implements ConsoleClient {
hide(_tabId: number): Promise<any> {
throw new Error("not implemented");
}
showCommand(_tabId: number, _command: string): Promise<any> {
throw new Error("not implemented");
}
showError(_tabId: number, _message: string): Promise<any> {
throw new Error("not implemented");
}
showFind(_tabId: number): Promise<any> {
throw new Error("not implemented");
}
showInfo(_tabId: number, _message: string): Promise<any> {
throw new Error("not implemented");
}
}
|