Types on src/background
This commit is contained in:
parent
0cffb09e24
commit
678020a3a2
48 changed files with 446 additions and 431 deletions
|
@ -1,11 +1,13 @@
|
|||
import VersionUseCase from '../usecases/VersionUseCase';
|
||||
|
||||
export default class VersionController {
|
||||
private versionUseCase: VersionUseCase;
|
||||
|
||||
constructor() {
|
||||
this.versionUseCase = new VersionUseCase();
|
||||
}
|
||||
|
||||
notify() {
|
||||
this.versionUseCase.notify();
|
||||
notify(): void {
|
||||
return this.versionUseCase.notify();
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue