UNPKG
core-cde
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
core-cde
/
dist
/
core-cde
/
events
/
src
/
CommonEvent.d.ts
7 lines
(6 loc)
•
239 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
ETextActions
,
ECursorActions
}
from
'../../stateChanger/StateChanger.module'
;
export
declare
const
EventHandlerName
=
"CommonEvent"
;
export
interface
EventHandler
<T> {
type
:
ETextActions
|
ECursorActions
;
data
: T; }