11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
import { NotificationService } from "./service";
|
|
|
|
/**
|
|
* No-operation notification service.
|
|
*/
|
|
export class NoopNotificationService implements NotificationService {
|
|
async notify(): Promise<void> {
|
|
// Do nothing
|
|
}
|
|
}
|