2026-05-31 13:54:31 +02:00

9 lines
265 B
TypeScript

import type { Direction } from '../../src/diagrams/block/blockTypes.js';
export declare const getArrowPoints: (duplicatedDirections: Direction[], bbox: {
width: number;
height: number;
}, node: any, totalWidth?: number) => {
x: any;
y: number;
}[];