The widget map to define the widget name and its component. It's usually for internal usage only.

interface NiceFormWidgetMap {
    [key: string]: {
        metaConverter?: (({ field, meta, }) => NiceFormField);
        widget: ReactComponent;
    };
}

Indexable

[key: string]: {
    metaConverter?: (({ field, meta, }) => NiceFormField);
    widget: ReactComponent;
}

Generated using TypeDoc