UNPKG

simplr-forms-dom

Version:
13 lines (12 loc) 580 B
import { FieldsArrayProps as CoreProps, FieldsArrayState as CoreState } from "simplr-forms/contracts"; import { BaseFieldsArray } from "simplr-forms"; export interface FieldsArrayProps extends CoreProps { } export interface FieldsArrayState extends CoreState { } export declare class FieldsArray extends BaseFieldsArray<FieldsArrayProps, FieldsArrayState> { Element: HTMLDivElement | undefined; protected SetElementRef: (element: HTMLDivElement | undefined) => void; protected GetHTMLProps(props: FieldsArrayProps): {}; render(): JSX.Element | null; }