UNPKG

blockly

Version:

Blockly is a library for building visual programming editors.

27 lines (21 loc) 516 B
/** * @license * Copyright 2013 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview A mapping of block type names to block prototype objects. */ 'use strict'; /** * A mapping of block type names to block prototype objects. * @namespace Blockly.blocks */ goog.module('Blockly.blocks'); /** * A mapping of block type names to block prototype objects. * @type {!Object<string,!Object>} * @alias Blockly.blocks.Blocks */ const Blocks = Object.create(null); exports.Blocks = Blocks;