mirror of
https://github.com/google/blockly.git
synced 2026-01-27 02:30:08 +01:00
* Add annotations to files under core/events * Add annotations to files under core/interfaces * Add annotations to files under core/keyboard_nav * Add annotations to files under core/renderers * Add annotations to files under core/serialization * Add annotations to files under core/theme * Add annotations to files under core/toolbox * Add annotations to files under core/utils * Add annotations to files under core
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Re-exports of Blockly.zelos.* modules.
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* Re-exports of Blockly.zelos.* modules.
|
|
* @namespace Blockly.zelos
|
|
*/
|
|
goog.module('Blockly.zelos');
|
|
|
|
const BottomRow = goog.require('Blockly.zelos.BottomRow');
|
|
const ConstantProvider = goog.require('Blockly.zelos.ConstantProvider');
|
|
const Drawer = goog.require('Blockly.zelos.Drawer');
|
|
const MarkerSvg = goog.require('Blockly.zelos.MarkerSvg');
|
|
const PathObject = goog.require('Blockly.zelos.PathObject');
|
|
const RenderInfo = goog.require('Blockly.zelos.RenderInfo');
|
|
const Renderer = goog.require('Blockly.zelos.Renderer');
|
|
const RightConnectionShape = goog.require('Blockly.zelos.RightConnectionShape');
|
|
const StatementInput = goog.require('Blockly.zelos.StatementInput');
|
|
const TopRow = goog.require('Blockly.zelos.TopRow');
|
|
|
|
exports.BottomRow = BottomRow;
|
|
exports.ConstantProvider = ConstantProvider;
|
|
exports.Drawer = Drawer;
|
|
exports.MarkerSvg = MarkerSvg;
|
|
exports.PathObject = PathObject;
|
|
exports.RenderInfo = RenderInfo;
|
|
exports.Renderer = Renderer;
|
|
exports.RightConnectionShape = RightConnectionShape;
|
|
exports.StatementInput = StatementInput;
|
|
exports.TopRow = TopRow;
|