1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-26 05:03:41 +00:00

activity connect/disconnect events

This commit is contained in:
Kyle Spearrin
2018-08-22 21:09:58 -04:00
parent 74b31daf14
commit d37fa836da
2 changed files with 23 additions and 1 deletions

View File

@@ -3,4 +3,6 @@ import { EnvironmentService } from './environment.service';
export abstract class NotificationsService {
init: (environmentService: EnvironmentService) => Promise<void>;
updateConnection: () => Promise<void>;
reconnectFromActivity: () => Promise<any>;
disconnectFromInactivity: () => Promise<any>;
}