1
0
mirror of https://github.com/openseadragon/openseadragon.git synced 2025-03-04 22:53:14 +03:00
openseadragon/bin/jsdoc/test/namespace_nested.js

24 lines
307 B
JavaScript
Raw Normal View History

/**
@namespace This is the first namespace.
*/
ns1 = {};
/**
This is the second namespace.
@namespace
*/
ns1.ns2 = {};
/**
This part of ns1.ns2
@constructor
*/
ns1.ns2.Function1 = function() {
};
ns1.staticFunction = function() {
};
/** A static field in a namespace. */
ns1.ns2.staticField = 1;