/json-to-typescript

Generate TypeScript from json.

Primary LanguageTypeScript

#JSON-TO-TypeScript

Convert json to typescript quickly. Use this tool to generate your models quickly so that you can focus on the bigger stuff.

Quick Setup

npm install

First, Drop Sample JSON File into the input directory

npm start

The generated TypeScript will exist in the dist folder

export interface Employee {
  name: string;
  salary: number;
  married: boolean;
}