JSON轉TypeScript

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

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

工具簡介

本工具是一個在線將JSON字符串轉換為TypeScript介面定義的工具。