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:
19
jsdoc-master/test/fixtures/aliasresolve2.js
vendored
Normal file
19
jsdoc-master/test/fixtures/aliasresolve2.js
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* @namespace
|
||||
*/
|
||||
var A = {};
|
||||
|
||||
/**
|
||||
* @namespace
|
||||
* @alias A.F
|
||||
*/
|
||||
var f = {};
|
||||
|
||||
(function(ns) {
|
||||
/**
|
||||
* @return {String}
|
||||
*/
|
||||
f.method = function(){};
|
||||
|
||||
ns.F = f;
|
||||
})(A);
|
Reference in New Issue
Block a user