UNPKG
corello
Version:
latest (0.3.2)
0.3.2
0.3.1
0.3.0
0.2.0
0.1.2
0.1.1
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Main Kernel
corello
/
dist
/
event
/
def.d.ts
7 lines
(6 loc)
•
175 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
IEvent
}
from
'./meta'
;
export
declare
class
Event
<T>
implements
IEvent
<T> {
type
:
string
;
info
?: T;
constructor
(
type
:
string
,
info
?: T,
ctx
?:
string
); }