Correct doc for actionDistance

This commit is contained in:
thepaperpilot 2023-04-23 19:31:25 -05:00
parent 7b59fcfc38
commit 6f985fd55b

View file

@ -118,7 +118,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;