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.
RELOG/node_modules/@xyflow/react/dist/esm/components/Nodes/utils.d.ts

13 lines
467 B

import type { RefObject } from 'react';
import type { StoreApi } from 'zustand';
import type { ReactFlowState } from '../../types';
export declare function handleNodeClick({ id, store, unselect, nodeRef, }: {
id: string;
store: {
getState: StoreApi<ReactFlowState>['getState'];
setState: StoreApi<ReactFlowState>['setState'];
};
unselect?: boolean;
nodeRef?: RefObject<HTMLDivElement>;
}): void;
//# sourceMappingURL=utils.d.ts.map