UNPKG

typescript-json-schema

Version:

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

20 lines (15 loc) 284 B
interface MyType {} interface MyMap1 { [id: string]: MyType; } /** * The additionalProperties annotation should be ignored * @additionalProperties false */ interface MyMap2 { [id: string]: (string | number); } interface MyObject { map1: MyMap1; map2: MyMap2; }