Files
blockly/core/interfaces/i_draggable.ts
2022-07-07 22:22:51 +00:00

25 lines
443 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 type {IDeletable} from './i_deletable';
/**
* The interface for an object that can be dragged.
* @alias Blockly.IDraggable
*/
export interface IDraggable extends IDeletable {}