31 lines
395 B
JavaScript
31 lines
395 B
JavaScript
/**
|
|
*
|
|
* @class base
|
|
* @memberof v2
|
|
* @param _type {number}
|
|
*/
|
|
function base(_type) {
|
|
|
|
}
|
|
|
|
base.prototype = {
|
|
/**
|
|
*
|
|
* @public
|
|
* @function type
|
|
* @memberof v2.base
|
|
* @returns {number}
|
|
*/
|
|
type: function () {}
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @access static
|
|
* @function instance_of
|
|
* @memberof v2.base
|
|
* @param instance {v2}
|
|
*/
|
|
base.instance_of = function (instance) {
|
|
|
|
}; |