UNPKG

@try-at-software/input-elements

Version:

A package providing different input elements that are extensible and easily configurable for your custom needs.

7 lines (6 loc) 216 B
import { InternalDynamicInput } from '../IDynamicListInputElement'; export interface IDynamicListMenuOption<TValue> { name: string; icon?: string; createInput: () => InternalDynamicInput<TValue>; }