wetrade-design
Version:
一款多语言支持Vue3的UI框架
19 lines (18 loc) • 461 B
TypeScript
import type { Key } from '../_util/type';
import type { RawValueType } from './BaseSelect';
export interface FlattenOptionData<OptionType> {
label?: any;
data: OptionType;
key: Key;
value?: RawValueType;
groupOption?: boolean;
group?: boolean;
}
export interface SelectLocale {
notFoundContent?: string;
history?: string;
regionTypeAll?: string;
regionTypeHK?: string;
regionTypeUS?: string;
checkAll?: string;
}