UNPKG

react-customize-token-input

Version:

A react token (tag) input component. Allow customize data structure and Look & Feel

8 lines (7 loc) 176 B
import type { Nullish } from './mix'; export type Index = number; export interface TokenMeta<ET = string> { key: string; activated: boolean; error: Nullish | ET; }