1 2 3 4 5 6 7
import type { PlayerProfile } from "./PlayerProfile"; import type { PlayerState } from "./PlayerState"; export type PlayerInfo = { profile: PlayerProfile; state: PlayerState; };