@typedefs/parser
Advanced tools
Comparing version 1.3.3 to 1.3.4
## 8 August 2019 | ||
### [1.3.4](https://github.com/artdecocode/parser/compare/v1.3.3...v1.3.4) | ||
- [doc] More info on differences between _Closure_ and _TypeScript_. | ||
### [1.3.3](https://github.com/artdecocode/parser/compare/v1.3.2...v1.3.3) | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "@typedefs/parser", | ||
"version": "1.3.3", | ||
"version": "1.3.4", | ||
"description": "The Parser For JSDoc Types.", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
@@ -7,6 +7,8 @@ # @typedefs/parser | ||
- ✅ `function(string): void` | ||
- ⛔️ `(arg: string) => void` | ||
- ✅ `function(string, number=): void` | ||
- ⛔️ `(arg: string, optional?: number) => void` The arrow function notation is not supported. Cannot write `?` for optional arguments, need to use `=`. | ||
- ✅ `!Array<string>` | ||
- ⛔️ `string[]` | ||
- ⛔️ `string[]` The double array bracket notation will not work. | ||
- ✅ `{ record: (string|undefined) }` | ||
- ⛔️ `{ record?: string }` Optional properties cannot be denoted with a question mark. | ||
@@ -13,0 +15,0 @@ ```sh |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33342
185