UNPKG
@gorpacrate/core-graphics
Version:
latest (8.0.2)
8.0.2
8.0.1
8.0.0
7.2.1
7.2.0
7.1.2
A core library for creating shape-based graphic editors
@gorpacrate/core-graphics
/
lib
/
event-sourcing
/
event-sourcing.d.ts
4 lines
(3 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
import
{
IEvent
}
from
'./declarations'
;
export
declare
function
getUndoEvent<T
extends
IEvent
>(
history
: T[],
author
:
string
): T |
undefined
;
export
declare
function
getRedoEvent<T
extends
IEvent
>(
history
: T[],
author
:
string
): T |
undefined
;