UNPKG

@formio/core

Version:

The core Form.io renderering framework.

7 lines (6 loc) 307 B
import { ComponentSchema } from '../component/Component'; import { ModelDecoratorInterface } from '@formio/model'; export interface NestedComponentSchema extends ComponentSchema { components: Array<ComponentSchema | any>; } export declare function NestedComponent(props?: any): ModelDecoratorInterface;