mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
* chore: initial setup for linting ts * chore: Temporarily disable most of the rules causing problems * chore: fix autofixable problems. * chore: ignore the last few files and rules * chore: fix remaining lint errors * chore: fix more small lint * chore: run original rules on js files, new ts rules on ts files * chore: use jsdoc style return in js files * chore: add lint fix script * chore: fix prefer-spread lint * chore: fix no-invalid-this rule * chore: fix no-unused-vars * chore: fix trashcan lint
38 lines
930 B
TypeScript
38 lines
930 B
TypeScript
/** @fileoverview Re-exports of Blockly.geras.* modules. */
|
|
|
|
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* Re-exports of Blockly.geras.* modules.
|
|
* @namespace Blockly.geras
|
|
*/
|
|
import * as goog from '../../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.geras');
|
|
|
|
import {ConstantProvider} from './constants.js';
|
|
import {Drawer} from './drawer.js';
|
|
import {HighlightConstantProvider} from './highlight_constants.js';
|
|
import {Highlighter} from './highlighter.js';
|
|
import {RenderInfo} from './info.js';
|
|
import {InlineInput} from './measurables/inline_input.js';
|
|
import {StatementInput} from './measurables/statement_input.js';
|
|
import {PathObject} from './path_object.js';
|
|
import {Renderer} from './renderer.js';
|
|
|
|
|
|
export {
|
|
ConstantProvider,
|
|
Drawer,
|
|
HighlightConstantProvider,
|
|
Highlighter,
|
|
InlineInput,
|
|
PathObject,
|
|
Renderer,
|
|
RenderInfo,
|
|
StatementInput,
|
|
};
|