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

8 lines
428 B
TypeScript

import type { TransferCheckedState, Key } from './transfer';
export declare const LEFT_CHECK_CHANGE_EVENT = "left-check-change";
export declare const RIGHT_CHECK_CHANGE_EVENT = "right-check-change";
export declare const useCheckedChange: (checkedState: TransferCheckedState, emit: any) => {
onSourceCheckedChange: (val: Key[], movedKeys: Key[]) => void;
onTargetCheckedChange: (val: Key[], movedKeys: Key[]) => void;
};