UNPKG

@playcanvas/pcui

Version:

User interface component library for the web

11 lines (10 loc) 321 B
import { Element } from '../Element/component'; import { ArrayInputArgs } from './index'; /** * Element that allows editing an array of values. */ declare class ArrayInput extends Element<ArrayInputArgs, any> { constructor(props: ArrayInputArgs); render(): import("react").JSX.Element; } export { ArrayInput };