mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +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>;
|
|
}
|