Files
mb-grid-solutions.com/lib/services/notifications/noop-notification-service.ts

6 lines
160 B
TypeScript

import type { NotificationService } from "./notification-service";
export class NoopNotificationService implements NotificationService {
async notify() {}
}