9 lines
265 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
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;
}[];