export interface AppState { players: Player[]; } export interface Player { name: string; points: number; at: number; }