Skip to content

Commit

Permalink
Create block-shape.js
Browse files Browse the repository at this point in the history
  • Loading branch information
AshimeeAlt authored May 26, 2024
1 parent 16415ba commit 5a02b5e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/extension-support/block-shape.js
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 5a02b5e

Please sign in to comment.