forked from Botanical/BotanJS
Migrate old externs 9/x
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user