schema 配置调整

This commit is contained in:
2betop 2020-10-10 17:43:05 +08:00
parent 1b0f487147
commit 6eb1d1f2a9

View File

@ -8,6 +8,7 @@ import FormItem, {
FormControlSchema
} from './Item';
import {IIRendererStore} from '../../store/iRenderer';
import {SchemaCollection} from '../../Schema';
/**
*
@ -15,9 +16,11 @@ import {IIRendererStore} from '../../store/iRenderer';
*/
export interface ContainerControlSchema
extends FormBaseControl,
ContainerSchema {
Omit<ContainerSchema, 'body'> {
type: 'container';
body?: SchemaCollection;
/**
*
*/