UNPKG

tdesign-vue-next

Version:
16 lines (15 loc) 476 B
import { DataOption, TransferValue, TransferListType, SearchContext, TdTransferProps } from './type'; export * from './type'; export type TransferProps = TdTransferProps; export interface TransferItemOption { label: string; value: TransferValue; disabled: boolean; key: string; data: DataOption; children?: TransferItemOption[]; } export type TransferListOptionBase<T> = { [type in TransferListType]: T; }; export type SearchEvent = SearchContext;