From 5a02b5ebc1120b46f29df00999fd432780beacf6 Mon Sep 17 00:00:00 2001 From: AshimeeAlt <161080149+AshimeeAlt@users.noreply.github.com> Date: Sun, 26 May 2024 12:11:31 -0400 Subject: [PATCH] Create block-shape.js --- src/extension-support/block-shape.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/extension-support/block-shape.js diff --git a/src/extension-support/block-shape.js b/src/extension-support/block-shape.js new file mode 100644 index 00000000000..9c827ef1a9f --- /dev/null +++ b/src/extension-support/block-shape.js @@ -0,0 +1,22 @@ +/** + * Types of block shapes + * @enum {number} + */ +const BlockShape = { + /** + * Output shape: hexagonal (booleans/predicates). + */ + HEXAGONAL: 1, + + /** + * Output shape: rounded (numbers). + */ + ROUND: 2, + + /** + * Output shape: squared (any/all values; strings). + */ + SQUARE: 3, +}; + +module.exports = BlockShape;