mirror of https://github.com/ANL-CEEESA/RELOG.git
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.
13 lines
467 B
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
|