mirror of
https://github.com/google/blockly.git
synced 2026-01-09 01:50:11 +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
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Re-exports of Blockly.geras.* modules.
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* Re-exports of Blockly.geras.* modules.
|
|
* @namespace Blockly.geras
|
|
*/
|
|
goog.module('Blockly.geras');
|
|
|
|
const ConstantProvider = goog.require('Blockly.geras.ConstantProvider');
|
|
const Drawer = goog.require('Blockly.geras.Drawer');
|
|
const HighlightConstantProvider = goog.require('Blockly.geras.HighlightConstantProvider');
|
|
const Highlighter = goog.require('Blockly.geras.Highlighter');
|
|
const InlineInput = goog.require('Blockly.geras.InlineInput');
|
|
const PathObject = goog.require('Blockly.geras.PathObject');
|
|
const RenderInfo = goog.require('Blockly.geras.RenderInfo');
|
|
const Renderer = goog.require('Blockly.geras.Renderer');
|
|
const StatementInput = goog.require('Blockly.geras.StatementInput');
|
|
|
|
exports.ConstantProvider = ConstantProvider;
|
|
exports.Drawer = Drawer;
|
|
exports.HighlightConstantProvider = HighlightConstantProvider;
|
|
exports.Highlighter = Highlighter;
|
|
exports.InlineInput = InlineInput;
|
|
exports.PathObject = PathObject;
|
|
exports.RenderInfo = RenderInfo;
|
|
exports.Renderer = Renderer;
|
|
exports.StatementInput = StatementInput;
|