raviqqe/self-talk

View on GitHub
src/infrastructure/alert-message-presenter.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class AlertMessagePresenter {
  public present(message: string): void {
    alert(message);
  }
}