mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-24 07:25:40 -06:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
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;
|
|
}[];
|