Files
mixio/blockly/core/interfaces/i_contextmenu.js
Eason010212 5d80728be9 mixio 1.10.0
2023-03-10 18:03:02 +08:00

27 lines
467 B
JavaScript

/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview The interface for an object that supports a right-click.
* @author samelh@google.com (Sam El-Husseini)
*/
'use strict';
goog.provide('Blockly.IContextMenu');
/**
* @interface
*/
Blockly.IContextMenu = function() {};
/**
* Show the context menu for this object.
* @param {!Event} e Mouse event.
*/
Blockly.IContextMenu.prototype.showContextMenu;