1 2 3 4 5 6 7
import type { SubmitResult } from "./SubmitResult"; export type PlayerState = { score: number | null; code: string; submitResult: SubmitResult; };