jsdoc/test/fixtures/constructstag.js
Jeff Williams 48e6c392d5 huge whitespace cleanup
- remove all trailing whitespace
- for consistency, replace all tabs with spaces
2014-03-03 07:43:01 -08:00

19 lines
380 B
JavaScript

Classify('TextBlock', {
/**
Document your constructor function here.
@constructs TextBlock
@classdesc Describe your class here
@param {object} opts
@throws MissingNode
*/
construct: function(node, opts) {
},
/**
Document your method here.
@memberof TextBlock#
*/
align: function() {
}
});