Skip to content

Commit a358ccc

Browse files
authored
Fix JSDoc
1 parent 0c33bf5 commit a358ccc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/ast/uniontype.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ const Declaration = require("./declaration");
99
const KIND = "uniontype";
1010

1111
/**
12-
* An interface definition
13-
* @constructor Interface
12+
* A union of types
13+
* @constructor UnionType
1414
* @extends {Declaration}
15-
* @property {Identifier[]} extends
16-
* @property {Declaration[]} body
15+
* @property {Type[]} types
1716
*/
1817
module.exports = Declaration.extends(KIND, function UnionType(
1918
types,

0 commit comments

Comments
 (0)