From 6f985fd55bd422d01e1d84fe1efe9ceec18c065e Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 23 Apr 2023 19:31:25 -0500 Subject: [PATCH] Correct doc for actionDistance --- src/features/boards/board.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/boards/board.ts b/src/features/boards/board.ts index 323b7d2..4412918 100644 --- a/src/features/boards/board.ts +++ b/src/features/boards/board.ts @@ -118,7 +118,7 @@ export interface NodeTypeOptions { titleColor?: NodeComputable; /** 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; /** A function that is called when the node is clicked. */ onClick?: (node: BoardNode) => void;