Amazon Vinyl
    Preparing search index...

    Interface PlayerRegistry

    A registry of all non-disposed Vinyl players. Used for debugging and cleanup validation.

    interface PlayerRegistry {
        players: readonly AnyRecord[];
        addPlayer(player: AnyRecord): void;
        removePlayer(player: AnyRecord): void;
    }

    Implemented by

    Index
    players: readonly AnyRecord[]

    Returns the non-disposed Vinyl players.