mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-23 16:38:45 +01: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>;
|
|
}
|