manual fixes to import types

This commit is contained in:
Beka Westberg
2022-07-07 22:48:51 +00:00
parent cf1bf20f33
commit 40dedcee29
11 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ import './touch';
import {Block} from './block';
import * as blockAnimations from './block_animations';
import * as browserEvents from './browser_events';
import type {Comment} from './comment';
import {Comment} from './comment';
import * as common from './common';
import {config} from './config';
import type {Connection} from './connection';
@@ -60,7 +60,7 @@ import * as dom from './utils/dom';
import {Rect} from './utils/rect';
import {Svg} from './utils/svg';
import * as svgMath from './utils/svg_math';
import type {Warning} from './warning';
import {Warning} from './warning';
import {Workspace} from './workspace';
import type {WorkspaceSvg} from './workspace_svg';
+1 -1
View File
@@ -16,7 +16,7 @@
*/
import type {Workspace} from '../workspace';
import {Workspace} from '../workspace';
import * as eventUtils from './utils';
+1 -1
View File
@@ -19,7 +19,7 @@
import type {Block} from '../block';
import * as registry from '../registry';
import * as idGenerator from '../utils/idgenerator';
import type {Workspace} from '../workspace';
import {Workspace} from '../workspace';
import type {WorkspaceSvg} from '../workspace_svg';
import type {Abstract} from './events_abstract';
+1 -1
View File
@@ -23,7 +23,7 @@ import {DeleteArea} from './delete_area';
import * as BlockCreate from './events/events_block_create';
import * as VarCreate from './events/events_var_create';
import * as eventUtils from './events/utils';
import type {FlyoutButton} from './flyout_button';
import {FlyoutButton} from './flyout_button';
import {FlyoutMetricsManager} from './flyout_metrics_manager';
import * as Gesture from './gesture';
import type {IFlyout} from './interfaces/i_flyout';
+1 -1
View File
@@ -18,7 +18,7 @@
import type {Block} from './block';
import * as common from './common';
import type {Names, NameType} from './names';
import {Names, NameType} from './names';
import * as deprecation from './utils/deprecation';
import type {Workspace} from './workspace';
+1 -1
View File
@@ -38,7 +38,7 @@ import * as Tooltip from './tooltip';
import * as Touch from './touch';
import {Coordinate} from './utils/coordinate';
import {Workspace} from './workspace';
import type {WorkspaceCommentSvg} from './workspace_comment_svg';
import {WorkspaceCommentSvg} from './workspace_comment_svg';
import {WorkspaceDragger} from './workspace_dragger';
import type {WorkspaceSvg} from './workspace_svg';
+1 -1
View File
@@ -27,7 +27,7 @@ import type {WorkspaceSvg} from '../../workspace_svg';
import {ConstantProvider} from './constants';
import * as debug from './debug';
import type {Debug} from './debugger';
import {Debug} from './debugger';
import {Drawer} from './drawer';
import type {IPathObject} from './i_path_object';
import {RenderInfo} from './info';
+1 -1
View File
@@ -23,7 +23,7 @@ import * as utilsColour from '../../utils/colour';
import * as dom from '../../utils/dom';
import {Svg} from '../../utils/svg';
import * as svgPaths from '../../utils/svg_paths';
import type {ConstantProvider as BaseConstantProvider, Shape} from '../common/constants';
import {ConstantProvider as BaseConstantProvider, Shape} from '../common/constants';
/** An object containing sizing and path information about inside corners. */
+1 -1
View File
@@ -21,7 +21,7 @@ import {FieldLabel} from '../../field_label';
import {FieldTextInput} from '../../field_textinput';
import {Align, Input} from '../../input';
import {inputTypes} from '../../input_types';
import type {RenderInfo as BaseRenderInfo} from '../common/info';
import {RenderInfo as BaseRenderInfo} from '../common/info';
import type {Measurable} from '../measurables/base';
import {Field} from '../measurables/field';
import {InRowSpacer} from '../measurables/in_row_spacer';
+1 -1
View File
@@ -17,7 +17,7 @@
// Unused import preserved for side-effects. Remove if unneeded.
import './connection_checker';
import type {Block} from './block';
import {Block} from './block';
import type {BlocklyOptions} from './blockly_options';
import type {ConnectionDB} from './connection_db';
import type {Abstract} from './events/events_abstract';
+4 -4
View File
@@ -40,7 +40,7 @@ import './metrics_manager';
// Unused import preserved for side-effects. Remove if unneeded.
import './msg';
import type {Block} from './block';
import {Block} from './block';
import type {BlockDragSurfaceSvg} from './block_drag_surface';
import {BlockSvg} from './block_svg';
import type {BlocklyOptions} from './blockly_options';
@@ -78,7 +78,7 @@ import {Classic} from './theme/classic';
import {ThemeManager} from './theme_manager';
import * as Tooltip from './tooltip';
import {TouchGesture} from './touch_gesture';
import type {Trashcan} from './trashcan';
import {Trashcan} from './trashcan';
import * as utils from './utils';
import * as arrayUtils from './utils/array';
import {Coordinate} from './utils/coordinate';
@@ -96,8 +96,8 @@ import * as VariablesDynamic from './variables_dynamic';
import * as WidgetDiv from './widgetdiv';
import {Workspace} from './workspace';
import {WorkspaceAudio} from './workspace_audio';
import type {WorkspaceComment} from './workspace_comment';
import type {WorkspaceCommentSvg} from './workspace_comment_svg';
import {WorkspaceComment} from './workspace_comment';
import {WorkspaceCommentSvg} from './workspace_comment_svg';
import type {WorkspaceDragSurfaceSvg} from './workspace_drag_surface_svg';
import * as Xml from './xml';
import {ZoomControls} from './zoom_controls';