forked from Botanical/BotanJS
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
|
/** @constructor */
|
||
|
Components.Vim.IAction = function(){};
|
||
|
|
||
|
/** @type Function */
|
||
|
Components.Vim.IAction.dispose;
|
||
|
/** @type Function */
|
||
|
Components.Vim.IAction.handler;
|
||
|
/** @type Function */
|
||
|
Components.Vim.IAction.getMessage;
|