mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
12 lines
204 B
JavaScript
12 lines
204 B
JavaScript
/**
|
|
* @namespace
|
|
* @property {String} 1 The number one.
|
|
* @property {String} 2 The number two.
|
|
* @property {String} 3 The number three.
|
|
*/
|
|
var numericObject = {
|
|
1: 'a',
|
|
2: 'b',
|
|
3: 'c'
|
|
};
|