UNPKG

gu-plugin-formula

Version:
15 lines (12 loc) 187 B
/** * @description formula element * @author wangfupeng */ type EmptyText = { text: '' } export type FormulaElement = { type: 'formula' value: string children: EmptyText[] }