mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-06-30 21:18:14 +08:00
9 lines
303 B
TypeScript
9 lines
303 B
TypeScript
import type { FormConfig, FormItemConfig } from './base';
|
|
|
|
export * from './base';
|
|
export * from './editor';
|
|
|
|
export const defineFormConfig = <T = never>(config: FormConfig<T>): FormConfig<T> => config;
|
|
|
|
export const defineFormItem = <T = never>(config: FormItemConfig<T>): FormItemConfig<T> => config;
|