From 2114b71d47d591449ec1eff9f2c349cf8ef0d361 Mon Sep 17 00:00:00 2001 From: roymondchen Date: Thu, 27 Feb 2025 19:28:08 +0800 Subject: [PATCH] =?UTF-8?q?style(vue-runtime-help):=20=E6=B7=BB=E5=8A=A0Us?= =?UTF-8?q?erRenderFunction=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- runtime/vue-runtime-help/package.json | 2 +- runtime/vue-runtime-help/src/index.ts | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/runtime/vue-runtime-help/package.json b/runtime/vue-runtime-help/package.json index bde11f79..56859441 100644 --- a/runtime/vue-runtime-help/package.json +++ b/runtime/vue-runtime-help/package.json @@ -1,5 +1,5 @@ { - "version": "1.0.0", + "version": "1.0.1", "name": "@tmagic/vue-runtime-help", "type": "module", "sideEffects": false, diff --git a/runtime/vue-runtime-help/src/index.ts b/runtime/vue-runtime-help/src/index.ts index 8606bfb8..110bca4c 100644 --- a/runtime/vue-runtime-help/src/index.ts +++ b/runtime/vue-runtime-help/src/index.ts @@ -1,4 +1,20 @@ +import { h } from 'vue-demi'; + +import type { MComponent } from '@tmagic/core'; + export * from './hooks/use-editor-dsl'; export * from './hooks/use-dsl'; export * from './hooks/use-app'; export { useComponent } from './hooks/use-component'; + +export interface userRenderFunctionOptions { + h: typeof h; + type: Parameters[0]; + props: any; + attrs: any; + className: string | string[]; + style: any; + config: MComponent; +} + +export type UserRenderFunction = (options: userRenderFunctionOptions) => any;