UNPKG
ngrx-event-bus
Version:
latest (2.1.8)
2.1.8
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
1.0.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.1
Angular and RxJs event bus with Mediator Pattern
github.com/pixelbyaj/ng-libs
pixelbyaj/ng-libs
ngrx-event-bus
/
lib
/
interface
/
Event.d.ts
12 lines
(11 loc)
•
236 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
IEvent
}
from
"./IEvent"
;
export
declare
class
EmitEvent
{
name
:
IEvent
;
value
?:
any
;
constructor
(
name
:
IEvent
,
value
?:
any
); }
export
declare
enum
EmitRecord
{
First
=
1
,
Last
=
2
,
All
=
3
}