import { BasicProps, BasicState, EditSetting } from '../type' export class Props extends BasicProps { public editSetting: EditSetting = { key: 'gaea-lofterTitle', name: 'lofter标题模块', isContainer: false, isAutoHeight: true, defaultPosition: { top: '0', left: '0' }, type: ['common', 'lofter'], editors: [ { field: 'title', text: '标题', type: 'string' }, { field: 'style.color', text: '标题字体颜色', type: 'color' }, { field: 'marginTop', text: '模块上间距', type: 'number' } ] }; public color: string = '#1F1F1F' } export class State extends BasicState { }