peerix - v0.1.0
    Preparing search index...

    Interface DriverEvents

    Defines the internal events emitted by the Driver class.

    interface DriverEvents {
        active: [];
        error: [Error];
        inactive: [];
        [event: string]: any[];
    }

    Indexable

    • [event: string]: any[]

      Allows for additional custom events.

    Index

    Properties

    Properties

    active: []

    Emitted when the driver becomes active.

    error: [Error]

    Emitted when an error occurs within the driver.

    inactive: []

    Emitted when the driver becomes inactive.