blockly
Version:
Blockly is a library for building visual programming editors.
17 lines • 396 B
TypeScript
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* The interface for a workspace component that can be registered with the
* ComponentManager.
*/
export interface IComponent {
/**
* The unique ID for this component that is used to register with the
* ComponentManager.
*/
id: string;
}
//# sourceMappingURL=i_component.d.ts.map