mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
notification service
This commit is contained in:
@@ -4,6 +4,7 @@ export abstract class EnvironmentService {
|
||||
apiUrl: string;
|
||||
identityUrl: string;
|
||||
iconsUrl: string;
|
||||
notificationsUrl: string;
|
||||
|
||||
getWebVaultUrl: () => string;
|
||||
setUrlsFromStorage: () => Promise<void>;
|
||||
|
||||
6
src/abstractions/notifications.service.ts
Normal file
6
src/abstractions/notifications.service.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { EnvironmentService } from './environment.service';
|
||||
|
||||
export abstract class NotificationsService {
|
||||
init: (environmentService: EnvironmentService) => Promise<void>;
|
||||
updateConnection: () => Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user