Add PluginManager (#4672)

* Add PluginManager.
This commit is contained in:
Monica Kozbial
2021-03-04 16:51:06 -08:00
committed by GitHub
parent 4e5cecf90c
commit ef8a5a1fe1
9 changed files with 247 additions and 55 deletions

View File

@@ -0,0 +1,22 @@
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Interface for a plugin.
* @author kozbial@google.com (Monica Kozbial)
*/
'use strict';
goog.provide('Blockly.IPlugin');
/**
* The interface for a workspace plugin.
* @interface
*/
Blockly.IPlugin = function() {};