json2ts icon indicating copy to clipboard operation
json2ts copied to clipboard

Convert JSON to TypeScript interfaces

Results 5 json2ts issues
Sort by recently updated
recently updated
newest added

Child interface should be called `IProgress` ```typescript export interface IRootObject { progress: IProgres[]; } export interface IProgres { order: number; stage: string; status: string; } ```

bug

The interface will only be generated for top-level "items" and nested one will be ignored ```javascript { "id": "blah", "items": [ { "field1": "something", "items": [ { "name": "nested" },...

bug