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
/
editor-state
/
reducer
/
draw.d.ts
5 lines
(4 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
import
{
IEditorEvent
}
from
'../editor-events'
;
import
{
IEditorState
}
from
'../editor-state'
;
export
declare
const
DRAWN_SHAPE_ID
=
"___"
;
export
default
function
drawStateReducer
(
currentState: IEditorState, ev: IEditorEvent
):
IEditorState
;