Files
dsProject/dsBase/WebRoot/html/cdn/lib/components/transfer/src/useMove.d.ts
2025-08-14 15:45:08 +08:00

7 lines
305 B
TypeScript

import type { ComputedRef } from 'vue';
import type { TransferProps, TransferCheckedState } from './transfer';
export declare const useMove: (props: TransferProps, checkedState: TransferCheckedState, propsKey: ComputedRef<string>, emit: any) => {
addToLeft: () => void;
addToRight: () => void;
};