jsdoc/test/fixtures/numericpropertytag.js
2015-03-09 16:18:44 -07:00

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'
};