JSON转TypeScript接口

export interface Address {
  city: string;
  zip: string;
}

export interface RootObject {
  name: string;
  age: number;
  address: Address;
}

工具简介

本工具是一个在线将JSON字符串转换为TypeScript接口定义的工具。