mirror of https://gitee.com/antv-l7/antv-l7
13 lines
375 B
JavaScript
13 lines
375 B
JavaScript
import EditorCore from './EditorCore';
|
|
var GetText = EditorCore.GetText,
|
|
GetHTML = EditorCore.GetHTML;
|
|
|
|
var toEditorState = EditorCore.ToEditorState;
|
|
var EditorCorePublic = {
|
|
EditorCore: EditorCore,
|
|
GetText: GetText,
|
|
GetHTML: GetHTML,
|
|
toEditorState: toEditorState
|
|
};
|
|
export { EditorCore, GetText, GetHTML, toEditorState };
|
|
export default EditorCorePublic; |