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
+16 -16
View File
@@ -6,31 +6,31 @@
Components.Vim.VimArea = function(stage, detectScreenSize){};
/** @type {Components.Vim.LineFeeder} */
Components.Vim.VimArea.contentFeeder;
Components.Vim.VimArea.prototype.contentFeeder;
/** @type {Components.Vim.Syntax.Analyzer} */
Components.Vim.VimArea.contentAnalyzer;
Components.Vim.VimArea.prototype.contentAnalyzer;
/** @type {Components.Vim.LineFeeder} */
Components.Vim.VimArea.statusFeeder;
Components.Vim.VimArea.prototype.statusFeeder;
/** @type {Components.Vim.StatusBar} */
Components.Vim.VimArea.statusBar;
Components.Vim.VimArea.prototype.statusBar;
/** @type {Components.Vim.State.Registers} */
Components.Vim.VimArea.registers;
Components.Vim.VimArea.prototype.registers;
/** @type {Components.Vim.State.Marks} */
Components.Vim.VimArea.marks;
Components.Vim.VimArea.prototype.marks;
/** @type Function */
Components.Vim.VimArea.demo;
Components.Vim.VimArea.prototype.demo;
/** @type Function */
Components.Vim.VimArea.display;
Components.Vim.VimArea.prototype.display;
/** @type Number */
Components.Vim.VimArea.index;
/** @type Number */
Components.Vim.VimArea.rows;
/** @type Number */
Components.Vim.VimArea.cols;
/** @type {number} */
Components.Vim.VimArea.prototype.index;
/** @type {number} */
Components.Vim.VimArea.prototype.rows;
/** @type {number} */
Components.Vim.VimArea.prototype.cols;
/** @type Array */
Components.Vim.VimArea.Instances;
Components.Vim.VimArea.prototype.Instances;
/** @type Function */
Components.Vim.VimArea.dispose;
Components.Vim.VimArea.prototype.dispose;