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
/
declarations
/
scene.d.ts
13 lines
(12 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
IShapeData
}
from
'./shapes'
;
export
interface
IShapesMap
{ [
index
:
string
]:
IShapeData
; }
export
interface
IScene
{
shapes
:
IShapesMap
;
shapesOrder
:
string
[]; }
export
interface
ICanvas
{
scene
:
IScene
; }
export
declare
const
EMPTY_SCENE
:
IScene
;