UNPKG

ar-design

Version:

AR Design is a (react | nextjs) ui library.

19 lines (18 loc) 511 B
import { IColors, IDisabled, IValidation } from "../../../libs/types/IGlobalProps"; export interface IProps<T> extends IValidation, IColors, IDisabled { name?: string; value?: string; onChange: (value?: string) => void; dynamicList?: { render: { display: keyof T; items: T[]; }; triggerKey?: string; onTagged: (tagged: any[]) => void; }; height?: number; multilang?: boolean; placeholder?: string; } export default IProps;