Files
mixio/blockly/core/blocks.js
Eason010212 5d80728be9 mixio 1.10.0
2023-03-10 18:03:02 +08:00

24 lines
500 B
JavaScript

/**
* @license
* Copyright 2013 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview A mapping of block type names to block prototype objects.
* @author spertus@google.com (Ellen Spertus)
*/
'use strict';
/**
* A mapping of block type names to block prototype objects.
* @name Blockly.Blocks
*/
goog.provide('Blockly.Blocks');
/**
* A mapping of block type names to block prototype objects.
* @type {!Object<string,Object>}
*/
Blockly.Blocks = Object.create(null);