UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

9 lines (8 loc) 418 B
import type { ReactElement } from "react"; import type { InputProps } from "./Input.js"; export interface FormInputProps extends InputProps { } /** Show a `SchemaInput` for each property in the current form. */ export declare function FormInput({ name, ...props }: FormInputProps): ReactElement; /** Show a `SchemaInput` for a named property in the current form. */ export declare function FormInputs(): ReactElement;