tdesign-vue-next
Version:
TDesign Component for vue-next
9 lines (8 loc) • 715 B
TypeScript
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;
};