Files
mixio/blockly/core/interfaces/i_registrable.js
Eason010212 5d80728be9 mixio 1.10.0
2023-03-10 18:03:02 +08:00

23 lines
444 B
JavaScript

/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview The interface for a Blockly component that can be registered.
* (Ex. Toolbox, Fields, Renderers)
* @author aschmiedt@google.com (Abby Schmiedt)
*/
'use strict';
goog.provide('Blockly.IRegistrable');
/**
* The interface for a Blockly component that can be registered.
* @interface
*/
Blockly.IRegistrable = function() {};