UNPKG

typescript-json-schema

Version:

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

12 lines (8 loc) 222 B
// Simple union (generates "type": [...]) type MyType1 = string | number; // Non-simple union (generates a "oneOf"/"anyOf") type MyType2 = string | number[]; interface MyObject { var1: MyType1; var2: MyType2; }