mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-02-09 06:35:34 +00:00
18 lines
352 B
TypeScript
18 lines
352 B
TypeScript
import type { FormConfig } from '@tmagic/form';
|
|
|
|
import checkbox from './checkbox';
|
|
import display from './display';
|
|
import number from './number';
|
|
import switchConfig from './switch';
|
|
import text from './text';
|
|
|
|
const configs: Record<string, FormConfig> = {
|
|
text,
|
|
checkbox,
|
|
display,
|
|
number,
|
|
switch: switchConfig,
|
|
};
|
|
|
|
export default configs;
|