dgeni-packages
Advanced tools
Changelog
0.20.0-rc.4 13 July 2017
typescript: support startingLine and endingLine properties 32698f30
Changelog
0.20.0-rc.3 12 July 2017
typescript: group function/method overloads together 2155b5ac
typescript: include specified namespaces in types dbe99f7b
Previously to 0.20.0 the service where you registered namespaces not to strip
was called ignoreTypeScriptNamespaces
and took an array of regular expressions.
Now this service is called namespacesToInclude
, which better reflects its
purpose. Also it is now an array of strings, since there was little benefit in it
being a regular expression.
Changelog
0.20.0-rc.2 10 July 2017
Changelog
0.20.0-rc.1 6 July 2017
Changelog
0.20.0-beta.5 2 July 2017
Changelog
0.20.0-beta.4 1 July 2017
Changelog
0.20.0-beta.3 30 June 2017
Changelog
0.20.0-beta.2 30 June 2017
Changelog
0.20.0-beta.1 29 June 2017
The typescript package has been completely rewritten in TypeScript. One benefit of this is that typings should be available for the API doc types in your own projects.
Along the way there are some changes to the properties that are attached to the API docs that are generated. Here is a list of the things that might affect you:
_
are no longer considered private. You should filter them out in a
custom processor if you do not want them to appear in the docs.returnType
but that did not make sense for non-functions. This property is renamed to type
.heritage
,
which was a string representation containing both "implements" and "extends" clauses. These have now
been split into two properties implementsClauses
and extendsClauses
, which each contain an array
of strings._
are private