Correct doc for actionDistance

This commit is contained in:
thepaperpilot 2023-04-23 19:31:25 -05:00
parent dbd1e10475
commit 1e0666a36a

View file

@ -120,7 +120,7 @@ export interface NodeTypeOptions {
titleColor?: NodeComputable<string>;
/** The list of action options for the node. */
actions?: BoardNodeActionOptions[];
/** The distance between the center of the node and its actions. */
/** The arc between each action, in radians. */
actionDistance?: NodeComputable<number>;
/** A function that is called when the node is clicked. */
onClick?: (node: BoardNode) => void;