mirror of
https://github.com/google/blockly.git
synced 2026-01-07 17:10:11 +01:00
27 lines
554 B
JavaScript
27 lines
554 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.module('Blockly.Blocks');
|
|
goog.module.declareLegacyNamespace();
|
|
|
|
/**
|
|
* A mapping of block type names to block prototype objects.
|
|
* @type {!Object<string,Object>}
|
|
*/
|
|
const Blocks = Object.create(null);
|
|
|
|
exports = Blocks;
|