kevinanielsen/flags-game

View on GitHub
types/Score.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type TScore = {
  score_id: string;
  score_count: number;
  user_name: string;
  created_at: Date;
  seconds_spent: number;
};