UNPKG
@formql/core
Version:
latest (0.5.0)
0.5.0
0.4.1
0.4.0
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
FormQL - A framework for building dynamic forms
formql.io
formql/formql
@formql/core
/
models
/
internal-event.model.d.ts
15 lines
(14 loc)
•
331 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
InternalEventHandler
{
eventType
:
InternalEventType
;
event
:
any
; }
export
declare
enum
InternalEventType
{
EditingComponent
=
1
,
EditingSection
=
2
,
EditingPage
=
3
,
EditingForm
=
4
,
RemoveComponent
=
5
,
RemoveSection
=
6
,
RemovePage
=
7
,
DndFormChanged
=
8
}