Implement survey notification (#1035)

This commit is contained in:
Francesco Spissu
2022-06-17 10:17:42 +02:00
committed by GitHub
parent a9aac0dbb0
commit f5cee97fef
7 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export const SurveyNotificationServicePath =
'/services/survey-notification-service';
export const SurveyNotificationService = Symbol('SurveyNotificationService');
export interface SurveyNotificationService {
isFirstInstance(): Promise<boolean>;
}