/** * 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, /** * Output shape: leaf-ed (custom shape thatl ooks cool). */ LEAF: 4, /** * Output shape: plus (custom). */ PLUS: 5, }; module.exports = BlockShape;