aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/models/PlayerInfo.ts
blob: 30ccceac6329776d17a89d06d9959d955d97873e (plain)
1
2
3
4
5
6
7
8
9
import type { SubmitResult } from "./SubmitResult";

export type PlayerInfo = {
	displayName: string | null;
	iconPath: string | null;
	score: number | null;
	code: string | null;
	submitResult?: SubmitResult;
};