From 3b7436ab89d132c9ef07952049263328fbf7f08f Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Thu, 18 May 2023 16:49:22 -0500 Subject: [PATCH] Clarify progress is from 0 to 1 --- 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 4412918..8a9026f 100644 --- a/src/features/boards/board.ts +++ b/src/features/boards/board.ts @@ -104,7 +104,7 @@ export interface NodeTypeOptions { shape: NodeComputable; /** Whether the node can accept another node being dropped upon it. */ canAccept?: NodeComputable; - /** The progress value of the node. */ + /** The progress value of the node, from 0 to 1. */ progress?: NodeComputable; /** How the progress should be displayed on the node. */ progressDisplay?: NodeComputable;