mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
7 lines
226 B
TypeScript
7 lines
226 B
TypeScript
export abstract class NotificationsService {
|
|
init: () => Promise<void>;
|
|
updateConnection: (sync?: boolean) => Promise<void>;
|
|
reconnectFromActivity: () => Promise<void>;
|
|
disconnectFromInactivity: () => Promise<void>;
|
|
}
|