mirror of
https://github.com/google/blockly.git
synced 2026-05-12 23:20:10 +02:00
25 lines
503 B
TypeScript
25 lines
503 B
TypeScript
/**
|
|
* @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)
|
|
*/
|
|
|
|
/**
|
|
* The interface for a Blockly component that can be registered.
|
|
* (Ex. Toolbox, Fields, Renderers)
|
|
* @namespace Blockly.IRegistrable
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
* The interface for a Blockly component that can be registered.
|
|
* @alias Blockly.IRegistrable
|
|
*/
|
|
export interface IRegistrable {}
|