UNPKG

dmeditor

Version:

dmeditor is a block-style visual editor. Data is in json format.

15 lines (14 loc) 439 B
export declare const Mode: { edit: string; view: string; }; export type TMode = keyof typeof Mode; export declare enum Category { Widget = "widget", Container = "container", Mixed = "mixed", Layout = "layout", Section = "section" } export type Display = 'dropdown' | 'button-group' | 'radio' | 'inline-block'; export type PageSettingType = 'text' | 'multitext' | 'image' | 'richtext' | 'checkbox' | 'dropdown';