UNPKG
@addapptables/microservice
Version:
latest (2.0.1)
2.0.1
2.0.0
1.1.0
1.0.0
1.0.0-0
0.0.3-0
0.0.2-0
0.0.1
0.0.1-0
addapptables microservice
github.com/addapptables/miscellaneous
addapptables/miscellaneous
@addapptables/microservice
/
dist
/
utils
/
_test
/
event.d.ts
11 lines
(10 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Event
,
IEventDto
}
from
'../../'
;
export
declare
class
DataEvent
implements
IEventDto
{
id
:
any
;
name
:
string
; }
export
declare
class
TestEvent
extends
Event
<
DataEvent
> {
action
:
string
;
context
:
string
;
constructor
(
data
:
DataEvent
); }