UNPKG

tdesign-vue

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