Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

typescript-json-schema

Package Overview
Dependencies
Maintainers
2
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typescript-json-schema - npm Package Compare versions

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 @@

4

package.json
{
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc