Files

9 lines
244 B
TypeScript
Raw Permalink Normal View History

2025-11-23 14:59:17 -08:00
import type { Direction } from '../../src/diagrams/block/blockTypes.js';
export declare const getArrowPoints: (duplicatedDirections: Direction[], bbox: {
width: number;
height: number;
}, node: any) => {
x: any;
y: number;
}[];