mirror of
https://github.com/google/blockly.git
synced 2026-01-10 18:37:09 +01:00
* chore(dragging): Rename core/interfaces/i_draggable.ts Rename core/interfaces/i_draggable.ts to core/interfaces/i_draggable.old.ts to make room for new IDraggable. Do not rename actual interface as it's not yet clear that it will be necessary for both to coexist as imports in the same file. * feat(dragging): Introduce new IDraggable interface * feat(dragging): Introduce new IDragger interface --------- Co-authored-by: Beka Westberg <bwestberg@google.com>
15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// Former goog.module ID: Blockly.IDraggable
|
|
|
|
import type {IDeletable} from './i_deletable.js';
|
|
|
|
/**
|
|
* The interface for an object that can be dragged.
|
|
*/
|
|
export interface IDraggable extends IDeletable {}
|