mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
git-svn-id: https://jsdoc.googlecode.com/svn/trunk/@17 d5942f49-e6af-b5c1-9d01-85772c7ca168
19 lines
388 B
JavaScript
19 lines
388 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() {
|
|
}
|
|
}); |