blob: a410bc7affc10ba47328722af2efa7c7c3a55b3a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { injectable } from "tsyringe";
import LinkUseCase from "../usecases/LinkUseCase";
@injectable()
export default class LinkController {
constructor(private linkUseCase: LinkUseCase) {}
openToTab(url: string, tabId: number): Promise<void> {
return this.linkUseCase.openToTab(url, tabId);
}
openNewTab(
url: string,
openerId: number,
background: boolean
): Promise<void> {
return this.linkUseCase.openNewTab(url, openerId, background);
}
}
|