UNPKG

258 BPlain TextView Raw
1// Typescript-JSON-Schema can handle defaults in classes as illustrated below
2class Dimension {
3 /** Width in cm */
4 width: number = 10;
5
6 /** Height in cm */
7 height: number = 10;
8
9 /** Length in cm */
10 length: number = 10;
11}