interface EventEmitterLike {
    off: ((...args) => any);
    on: ((...args) => any);
    once: ((...args) => any);
}

Properties

Properties

off: ((...args) => any)

Type declaration

    • (...args): any
    • Parameters

      • Rest ...args: any[]

      Returns any

on: ((...args) => any)

Type declaration

    • (...args): any
    • Parameters

      • Rest ...args: any[]

      Returns any

once: ((...args) => any)

Type declaration

    • (...args): any
    • Parameters

      • Rest ...args: any[]

      Returns any