mirror of
https://github.com/google/blockly.git
synced 2026-05-12 23:20:10 +02:00
26 lines
469 B
TypeScript
26 lines
469 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview The interface for an object that supports a right-click.
|
|
*/
|
|
|
|
/**
|
|
* The interface for an object that supports a right-click.
|
|
* @namespace Blockly.IContextMenu
|
|
*/
|
|
|
|
|
|
|
|
/** @alias Blockly.IContextMenu */
|
|
export interface IContextMenu {
|
|
/**
|
|
* Show the context menu for this object.
|
|
* @param e Mouse event.
|
|
*/
|
|
showContextMenu: AnyDuringMigration;
|
|
}
|