Migrate old externs 9/x

This commit is contained in:
2026-06-17 20:48:46 +08:00
parent 00fe7ca3bb
commit 01d4eb09a6
66 changed files with 708 additions and 420 deletions
+11 -7
View File
@@ -1,12 +1,16 @@
/** @constructor */
Components.Vim.IAction = function(){};
/**
* @interface
* @param {Components.Vim.Cursor} cursor
* @param {Components.Vim.ControlActionEvent} evt
*/
Components.Vim.IAction = function(cursor, evt){};
/** @type Function */
Components.Vim.IAction.dispose;
Components.Vim.IAction.prototype.dispose;
/** @type Function */
Components.Vim.IAction.handler;
Components.Vim.IAction.prototype.handler;
/** @type Function */
Components.Vim.IAction.getMessage;
Components.Vim.IAction.prototype.getMessage;
/** @type Boolean */
Components.Vim.IAction.allowMovement;
/** @type {!boolean} */
Components.Vim.IAction.prototype.allowMovement;