mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-08-17 10:18:32 +00: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;
|