typescript-json-schema
Advanced tools
Comparing version 0.44.0 to 0.44.1
21
api.md
@@ -1523,2 +1523,9 @@ # typescript-json-schema test examples | ||
## [type-globalThis](./test/programs/type-globalThis) | ||
```ts | ||
export type Test = typeof globalThis; | ||
``` | ||
## [type-intersection](./test/programs/type-intersection) | ||
@@ -1648,2 +1655,16 @@ | ||
## [type-recursive](./test/programs/type-recursive) | ||
```ts | ||
/** | ||
* A recursive type | ||
*/ | ||
export type TestChildren = TestChild | Array<TestChild | TestChildren>; | ||
interface TestChild { | ||
type: string; | ||
} | ||
``` | ||
## [type-union](./test/programs/type-union) | ||
@@ -1650,0 +1671,0 @@ |
{ | ||
"name": "typescript-json-schema", | ||
"version": "0.44.0", | ||
"version": "0.44.1", | ||
"description": "typescript-json-schema generates JSON Schema files from your Typescript sources", | ||
@@ -59,3 +59,3 @@ "main": "dist/typescript-json-schema.js", | ||
"@types/mocha": "^8.0.4", | ||
"@types/node": "^14.14.9", | ||
"@types/node": "^14.14.10", | ||
"ajv": "^6.12.6", | ||
@@ -62,0 +62,0 @@ "chai": "^4.2.0", |
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
209442