mirror of
https://github.com/google/blockly.git
synced 2026-01-30 20:20:09 +01:00
* chore: add and configure prettier * chore: remove clang-format * chore: remove clang-format config * chore: lint additional ts files * chore: fix lint errors in blocks * chore: add prettier-ignore where needed * chore: ignore js blocks when formatting * chore: fix playground html syntax * chore: fix yaml spacing from merge * chore: convert text blocks to use arrow functions * chore: format everything with prettier * chore: fix lint unused imports in blocks
35 lines
877 B
TypeScript
35 lines
877 B
TypeScript
/** @file Re-exports of Blockly.zelos.* modules. */
|
|
|
|
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
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,
|
|
};
|