mirror of
https://github.com/konvajs/konva.git
synced 2025-10-15 12:34:52 +08:00
checking in jsdoc dir so people can generate docs themselves
This commit is contained in:
18
jsdoc-master/test/fixtures/aliasglobal2.js
vendored
Normal file
18
jsdoc-master/test/fixtures/aliasglobal2.js
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
(function () {
|
||||
/**
|
||||
* Creates a new test object.
|
||||
* @alias Test
|
||||
* @constructor
|
||||
*/
|
||||
var Test = function(testName) {
|
||||
/** Document me. */
|
||||
this.name = testName;
|
||||
}
|
||||
|
||||
/** Document me. */
|
||||
Test.prototype.run = function(message) {
|
||||
};
|
||||
|
||||
/** Document me. */
|
||||
Test.counter = 1;
|
||||
})();
|
Reference in New Issue
Block a user