UNPKG
dmeditor
Version:
latest (0.2.3)
0.2.3
0.2.3-beta.1
0.2.2
0.2.2-beta.1
0.2.1
0.2.0
0.2.0-beta.3
0.2.0-beta.2
0.2.0-beta.1
0.1.0-beta.11
0.1.0-beta.10
0.1.0-beta.9
0.1.0-beta.8
0.1.0-beta.7
0.1.0-beta.6
0.1.0-beta.5
0.1.0-beta.4
0.1.0-beta.3
0.1.0-beta.2
0.1.0-beta.1
0.1.0-alpha.6
0.1.0-alpha.5
0.1.0-alpha.4
0.1.0-alpha.3
0.1.0-alpha.2
0.1.0-alpha.1
dmeditor is a block-style visual editor. Data is in json format.
dmeditor.io
dmeditor/dmeditor
dmeditor
/
widgets
/
menu
/
enitity.d.ts
15 lines
(14 loc)
•
345 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{
DMEData
}
from
'../../core/types'
;
export
interface
EntityMenu
{
loadedMenu
?:
string
;
menuList
:
Array
<{
text
:
string
;
identifier
:
string
;
value
:
string
; }>;
settings
?: {
color
?:
string
;
direction
?:
'horizontal'
|
'vertical'
;
general
?:
DMEData
.
GeneralSettingType
; }; }