Files
AstroJS/botanjs/src/externs/Components.Vim.IAction.js
T
2026-06-17 20:48:46 +08:00

17 lines
432 B
JavaScript

/**
* @interface
* @param {Components.Vim.Cursor} cursor
* @param {Components.Vim.ControlActionEvent} evt
*/
Components.Vim.IAction = function(cursor, evt){};
/** @type Function */
Components.Vim.IAction.prototype.dispose;
/** @type Function */
Components.Vim.IAction.prototype.handler;
/** @type Function */
Components.Vim.IAction.prototype.getMessage;
/** @type {!boolean} */
Components.Vim.IAction.prototype.allowMovement;