UNPKG

tdesign-vue-next

Version:
9 lines (8 loc) 715 B
import { ComputedRef } from 'vue'; import { TdSelectProps, TdOptionProps, SelectValue, SelectOption } from '../type'; export declare const getSingleContent: (value: TdSelectProps["value"], isRemote: boolean, searchDisplayOptions: ComputedRef<TdOptionProps[]>, optionsMap: ComputedRef<Map<SelectValue<SelectOption>, TdOptionProps>>) => string; export declare const getMultipleContent: (value: SelectValue[], isRemote: boolean, searchDisplayOptions: ComputedRef<TdOptionProps[]>, optionsMap: ComputedRef<Map<SelectValue<SelectOption>, TdOptionProps>>) => string[]; export declare const getNewMultipleValue: (innerValue: SelectValue[], optionValue: SelectValue) => { value: SelectValue[]; isCheck: boolean; };