tdesign-vue-next
Version:
TDesign Component for vue-next
16 lines (15 loc) • 476 B
TypeScript
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;