UNPKG

gu-plugin-formula

Version:
14 lines (13 loc) 226 B
/** * @description formula element * @author wangfupeng */ declare type EmptyText = { text: ''; }; export declare type FormulaElement = { type: 'formula'; value: string; children: EmptyText[]; }; export {};