gristlabs_grist-core/app/server/lib/INotifier.ts

7 lines
177 B
TypeScript
Raw Normal View History

export interface INotifier {
// for test purposes, check if any notifications are in progress
readonly testPending: boolean;
deleteUser(userId: number): Promise<void>;
}