UNPKG

@beisen-phoenix/select

Version:

## 概述

10 lines (8 loc) 157 B
export interface Item { value: string | number; label: string; disabled?: boolean; } export interface SelectValue { value?: string | Array<Item>; }