2020-07-21 13:20:51 +00:00
|
|
|
export interface INotifier {
|
2021-09-29 15:39:56 +00:00
|
|
|
deleteUser(userId: number): Promise<void>;
|
2020-07-21 13:20:51 +00:00
|
|
|
// for test purposes, check if any notifications are in progress
|
|
|
|
readonly testPending: boolean;
|
|
|
|
}
|