Add VBArray externs
This commit is contained in:
45
externs/vbarray.js
Normal file
45
externs/vbarray.js
Normal file
@@ -0,0 +1,45 @@
|
||||
/**
|
||||
* @externs
|
||||
* @see http://msdn.microsoft.com/en-us/library/y39d47w8(v=vs.94).aspx
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* FIXME check argument type
|
||||
* @constructor
|
||||
* @param {VBArray|string} safeArray
|
||||
*/
|
||||
var VBArray = function(safeArray) {};
|
||||
|
||||
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
VBArray.prototype.dimensions = function() {};
|
||||
|
||||
|
||||
/**
|
||||
* @param {...number} var_args
|
||||
* @return {*}
|
||||
*/
|
||||
VBArray.prototype.getItem = function(var_args) {};
|
||||
|
||||
|
||||
/**
|
||||
* @param {number} dimension
|
||||
* @return {*}
|
||||
*/
|
||||
VBArray.prototype.lbound = function(dimension) {};
|
||||
|
||||
|
||||
/**
|
||||
* @return {Array.<number>}
|
||||
*/
|
||||
VBArray.prototype.toArray = function() {};
|
||||
|
||||
|
||||
/**
|
||||
* @param {number} dimension
|
||||
* @return {*}
|
||||
*/
|
||||
VBArray.prototype.ubound = function(dimension) {};
|
||||
Reference in New Issue
Block a user