mirror of
https://github.com/google/blockly.git
synced 2026-05-13 07:30:10 +02:00
f85304f0ae
* chore: automatically change imports to import types * chore: revert changes that actually need to be imports * chore: format * chore: add more import type statements based on importsNotUsedAsValues * chore: fix tsconfig * chore: add link to compiler issue
26 lines
541 B
TypeScript
26 lines
541 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview The interface for an object that is draggable.
|
|
*/
|
|
|
|
/**
|
|
* The interface for an object that is draggable.
|
|
* @namespace Blockly.IDraggable
|
|
*/
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.IDraggable');
|
|
|
|
import type {IDeletable} from './i_deletable.js';
|
|
|
|
|
|
/**
|
|
* The interface for an object that can be dragged.
|
|
* @alias Blockly.IDraggable
|
|
*/
|
|
export interface IDraggable extends IDeletable {}
|