import { BasicProps, BasicState, EditSetting } from '../type' export class Props extends BasicProps { public editSetting: EditSetting = { key: 'gaea-snailDivider', name: '蜗牛分割线', isAutoHeight: true, isContainer: false, type: ['common', 'snail'], editors: [ 'Style', { field: 'backgroundColor', text: '背景颜色', type: 'color' }, { field: 'height', text: '高度', type: 'number', data: { inputRange: [1, 100] } } ] }; backgroundColor: string height: number = 16 } export class State extends BasicState { }