blockly
Version:
Blockly is a library for building visual programming editors.
17 lines • 338 B
TypeScript
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* The interface for an object that is movable.
*/
export interface IMovable {
/**
* Get whether this is movable or not.
*
* @returns True if movable.
*/
isMovable(): boolean;
}
//# sourceMappingURL=i_movable.d.ts.map