File size: 509 Bytes
30c32c8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * 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;