You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
428 B

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;
};