raviqqe/pomodoro

View on GitHub
src/application/performance-graph-presenter.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { type PerformanceGraph } from "./performance-graph.js";

export interface PerformanceGraphPresenter {
  presentGraph(graph: PerformanceGraph): void;
}