UNPKG

typescript-json-schema

Version:

typescript-json-schema generates JSON Schema files from your Typescript sources

12 lines (9 loc) 258 B
// Typescript-JSON-Schema can handle defaults in classes as illustrated below class Dimension { /** Width in cm */ width: number = 10; /** Height in cm */ height: number = 10; /** Length in cm */ length: number = 10; }