/** * PrivatePlayerState is the part of the state of a player that is secret (not shared with other players). * The interface is empty. It is meant to be extended by the ScriptingAPI developers to add custom properties. */ export interface PrivatePlayerState { [key: string]: unknown; }