ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
18 lines • 658 B
TypeScript
import * as React from 'react';
import { type ReactNode } from 'react';
import { type UseFieldArrayReturn } from 'react-hook-form';
import type { RaRecord } from "../../types.js";
export declare const SimpleFormIteratorBase: (props: SimpleFormIteratorBaseProps) => React.JSX.Element | null;
export interface SimpleFormIteratorBaseProps extends Partial<UseFieldArrayReturn> {
children: ReactNode;
inline?: boolean;
meta?: {
error?: any;
submitFailed?: boolean;
};
getItemDefaults?: (item: any) => any;
record?: RaRecord;
resource?: string;
source?: string;
}
//# sourceMappingURL=SimpleFormIteratorBase.d.ts.map