UNPKG
puppy-api-docs
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
Genernate material api docs from your comments.
puppy-api-docs
/
models
/
commentParseResult.js
14 lines
(13 loc)
•
291 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * Result returned after parsing and extracting objects * from comments. */
class
CommentParseResult
{
constructor
(
data
) {
if
(
data
) {
this
.comments =
data
.comments;
this
.errors =
data
.errors; } } } module.exports = CommentParseResult;