mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
23 lines
333 B
JavaScript
23 lines
333 B
JavaScript
/**
|
|
* @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() {};
|
|
|