mirror of
https://github.com/google/blockly.git
synced 2026-05-12 23:20:10 +02:00
25 lines
443 B
TypeScript
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 {}
|