UNPKG
@allgemein/eventbus
Version:
latest (0.17.1)
0.17.1
0.16.1
0.16.0
0.15.0
0.14.2
0.14.1
0.13.0
github.com/allgemein-node/eventbus
allgemein-node/eventbus
@allgemein/eventbus
/
bus
/
IEventListenerDef.d.ts
8 lines
(7 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
ISubscribeOptions
}
from
'./ISubscribeOptions'
;
export
interface
IEventListenerDef
extends
ISubscribeOptions
{
type
:
string
;
namespace
?:
string
;
target
:
Function
|
any
;
methodName
:
string
; }