style(vue-runtime-help): 添加UserRenderFunction定义

This commit is contained in:
roymondchen 2025-02-27 19:28:08 +08:00
parent 94d0ed1fd0
commit 2114b71d47
2 changed files with 17 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "1.0.1",
"name": "@tmagic/vue-runtime-help",
"type": "module",
"sideEffects": false,

View File

@ -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<typeof h>[0];
props: any;
attrs: any;
className: string | string[];
style: any;
config: MComponent;
}
export type UserRenderFunction = (options: userRenderFunctionOptions) => any;