mirror of
https://github.com/google/blockly.git
synced 2026-01-10 10:27:08 +01:00
19 lines
346 B
TypeScript
19 lines
346 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.IContextMenu');
|
|
|
|
|
|
export interface IContextMenu {
|
|
/**
|
|
* Show the context menu for this object.
|
|
*
|
|
* @param e Mouse event.
|
|
*/
|
|
showContextMenu(e: Event): void;
|
|
}
|