Interface PlayerIdentifier

The uuid and name of a player

interface PlayerIdentifier {
    fetch: ((options?) => Promise<null | Player>);
    name: string;
    uuid: string;
}

Properties

Properties

fetch: ((options?) => Promise<null | Player>)

Type declaration

name: string

The name of the player

uuid: string

The UUID of the player

Generated using TypeDoc