From 32f3aaa41d3dfa3c5c5e857d6fd3fd19368edfd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B1=A5=E5=9D=B3=E8=B5=B5?= Date: Mon, 28 Aug 2023 20:11:48 +0800 Subject: [PATCH] types: export IRangeStyle interface #267 --- src/editor/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/editor/index.ts b/src/editor/index.ts index dbb8234..f6913e1 100644 --- a/src/editor/index.ts +++ b/src/editor/index.ts @@ -61,6 +61,7 @@ import { EventBus } from './core/event/eventbus/EventBus' import { EventBusMap } from './interface/EventBus' import { IGroup } from './interface/Group' import { defaultGroupOption } from './dataset/constant/Group' +import { IRangeStyle } from './interface/Listener' export default class Editor { public command: Command @@ -267,5 +268,6 @@ export type { IBlock, ILang, ICatalog, - ICatalogItem + ICatalogItem, + IRangeStyle }