mirror of
https://github.com/google/blockly.git
synced 2026-02-01 05:00:11 +01:00
* chore: add linting for tsdoc * chore: don't require types on return * chore: remove redundant fileoverview from ts * chore: change return to returns and add some newlines * chore: remove license tag * chore: don't require params/return docs * chore: remove spurious struct tags * Revert "chore: change return to returns and add some newlines" This reverts commitd6d8656a45. * chore: don't auto-add param names * chore: disable require-param bc it breaks on this * return to returns and add line breaks * chore: configure additional jsdoc rules * chore: run format * Revert "chore: remove license tag" This reverts commit173455588a. * chore: allow license tag format * chore: only require jsdoc on exported items * chore: add missing jsdoc or silence where needed * chore: run format * chore: lint fixes
41 lines
959 B
TypeScript
41 lines
959 B
TypeScript
/** @file Re-exports of Blockly.zelos.* modules. */
|
|
|
|
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* Re-exports of Blockly.zelos.* modules.
|
|
*
|
|
* @namespace Blockly.zelos
|
|
*/
|
|
import * as goog from '../../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.zelos');
|
|
|
|
import {ConstantProvider} from './constants.js';
|
|
import {Drawer} from './drawer.js';
|
|
import {RenderInfo} from './info.js';
|
|
import {MarkerSvg} from './marker_svg.js';
|
|
import {BottomRow} from './measurables/bottom_row.js';
|
|
import {StatementInput} from './measurables/inputs.js';
|
|
import {RightConnectionShape} from './measurables/row_elements.js';
|
|
import {TopRow} from './measurables/top_row.js';
|
|
import {PathObject} from './path_object.js';
|
|
import {Renderer} from './renderer.js';
|
|
|
|
|
|
export {
|
|
BottomRow,
|
|
ConstantProvider,
|
|
Drawer,
|
|
MarkerSvg,
|
|
PathObject,
|
|
Renderer,
|
|
RenderInfo,
|
|
RightConnectionShape,
|
|
StatementInput,
|
|
TopRow,
|
|
};
|