UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

11 lines 421 B
import * as React from 'react'; import { InputProps } from "../form/useInput.cjs"; export declare const ArrayInput: (props: ArrayInputProps) => React.JSX.Element; export interface ArrayInputProps extends Omit<InputProps, 'disabled' | 'readOnly'> { className?: string; children: React.ReactNode; isFetching?: boolean; isLoading?: boolean; isPending?: boolean; } //# sourceMappingURL=ArrayInput.d.ts.map