Removed synchro services

This commit is contained in:
Eudes Inácio
2021-10-19 09:41:06 +01:00
parent a4a730a87e
commit c7eada815d
17 changed files with 197 additions and 220 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ import { Injectable } from '@angular/core';
export class BackgroundService {
callBacks: {
type: 'Offline' | 'Online',
type: 'Offline' | 'Online' | 'Notification',
object?: string
funx: Function
}[] = []
@@ -39,7 +39,7 @@ export class BackgroundService {
})
}
registerBackService(type: 'Offline' | 'Online', funx: Function, object = '') {
registerBackService(type: 'Offline' | 'Online' | 'Notification', funx: Function, object = '') {
this.callBacks.push({
type,
funx,