soiz1's picture
Upload 811 files
30c32c8 verified
raw
history blame
509 Bytes
/**
* 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;