transferum
    Preparing search index...

    Interface GateInterface

    Flow control contract — activate/deactivate/toggle with state-change subscriptions.

    interface GateInterface {
        active: boolean;
        activate(): void;
        deactivate(): void;
        onStateChange(handler: DataHandler<GateInterface>): SubscriberInterface;
        toggle(): boolean;
    }

    Hierarchy (View Summary)

    Implemented by

    Index
    active: boolean