mirror of
https://github.com/konvajs/konva.git
synced 2026-03-03 16:58:33 +08:00
28 lines
340 B
JavaScript
28 lines
340 B
JavaScript
|
|
/**
|
||
|
|
* @module my/module
|
||
|
|
*/
|
||
|
|
(function() {
|
||
|
|
|
||
|
|
/** document fooIn */
|
||
|
|
fooIn = function() {
|
||
|
|
};
|
||
|
|
|
||
|
|
/** @namespace */
|
||
|
|
bar = {
|
||
|
|
/** document bar.Zop */
|
||
|
|
zop: function() {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @constructor */
|
||
|
|
exports.Frotz = function() {
|
||
|
|
/** document exports.Frotz#quaz */
|
||
|
|
this.quaz = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
}) ();
|
||
|
|
|
||
|
|
/** document fooOut
|
||
|
|
*/
|
||
|
|
fooOut = function() {
|
||
|
|
};
|