skeldjs
    Preparing search index...

    Interface DoorsEvent<RoomType>

    interface DoorsEvent<RoomType extends StatefulRoom> {
        doorsystem:
            | AutoDoorsSystem<RoomType>
            | DoorsSystem<RoomType>
            | ElectricalDoorsSystem<RoomType>;
        room: RoomType;
    }

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Properties

    The door system that the door is in.

    room: RoomType

    The room or client that the event came from.