Skip to content

Commit e14a855

Browse files
author
Maximilian Wehrstedt
committed
prepared release v1.0.3
1 parent 2f8b330 commit e14a855

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry = "https://registry.npmjs.org"

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
## Changelog
22

3+
# v1.0.3
4+
New features in this release:
5+
- Support for object key and property description (see [#25](https://github.com/otris/jsdoc-tsd/issues/25))
6+
7+
Bugfixes:
8+
- Generic types were not mapped correctly, e.g.
9+
```js
10+
/**
11+
* @function f1
12+
* @param {Promise<*>} myParam
13+
*/
14+
```
15+
were mapped to
16+
```ts
17+
f1(myParam: Promise.<*>)
18+
```
19+
which is not valid typescript (see [#38](https://github.com/otris/jsdoc-tsd/issues/38))
20+
321
# v1.0.2
422
Bugfixes:
523
- Modules can now contain unexported members. You can use the @inner and @static annotation

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otris/jsdoc-tsd",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "JSDoc Template for generate typescript definition files from JSDoc comments",
55
"main": "src-out/core/publish.js",
66
"repository": {

0 commit comments

Comments
 (0)