12 lines
361 B
TypeScript
12 lines
361 B
TypeScript
import { type XYPosition } from '@xyflow/system';
|
|
/**
|
|
* Hook for updating node positions by passing a direction and factor
|
|
*
|
|
* @internal
|
|
* @returns function for updating node positions
|
|
*/
|
|
export declare function useMoveSelectedNodes(): (params: {
|
|
direction: XYPosition;
|
|
factor: number;
|
|
}) => void;
|
|
//# sourceMappingURL=useMoveSelectedNodes.d.ts.map
|