UNPKG

sws-frontend

Version:

sws frontend project

13 lines (12 loc) 370 B
/// <reference types="react" /> import { Props as FieldProps } from "./field"; import "./listfield.css"; export interface Props extends FieldProps { fields: string[]; onChange: (key, val) => void; placeholder?: string; disabled?: boolean; className?: string; } export declare const ListField: (props: Props) => JSX.Element; export default ListField;