Files
blockly/core/interfaces/i_deletable.ts
Beka Westberg ed531ec313 chore: remove all namespace comments (#6903)
* chore: remove all namespace comments

* chore: fix lint
2023-03-20 09:43:58 -07:00

22 lines
405 B
TypeScript

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as goog from '../../closure/goog/goog.js';
goog.declareModuleId('Blockly.IDeletable');
/**
* The interface for an object that can be deleted.
*/
export interface IDeletable {
/**
* Get whether this object is deletable or not.
*
* @returns True if deletable.
*/
isDeletable(): boolean;
}