mirror of
https://github.com/google/blockly.git
synced 2026-01-10 10:27:08 +01:00
21 lines
419 B
JavaScript
21 lines
419 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Interface for plugins that can be registered on the workspace.
|
|
* @author kozbial@google.com (Monica Kozbial)
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
goog.provide('Blockly.IWorkspacePlugin');
|
|
|
|
/**
|
|
* Base interface for a plugin that can be registered on the workspace.
|
|
* @interface
|
|
*/
|
|
Blockly.IWorkspacePlugin = function() {};
|