[chore] migrate to electron v28 + esm support + update deps + remove decorators

This commit is contained in:
MathieuG-P
2024-02-01 18:29:20 +01:00
parent ee6acb7980
commit 535831c03a
11 changed files with 6432 additions and 22245 deletions
-4
View File
@@ -22,7 +22,6 @@ export class LivService {
}
@Log()
public async isLivInstalled(): Promise<boolean> {
return execOnOs({
win32: async () => {
@@ -32,7 +31,6 @@ export class LivService {
}, true);
}
@Log()
public async createLivShortcut(entry: LivEntry): Promise<void> {
return execOnOs({
win32: async () => {
@@ -50,7 +48,6 @@ export class LivService {
});
}
@Log()
public async deleteLivShortcuts(ids: string[]): Promise<void> {
return execOnOs({
win32: async () => {
@@ -60,7 +57,6 @@ export class LivService {
})
}
@Log()
public getLivShortcuts(): Promise<LivEntry[]> {
return execOnOs({