JSON to TypeScript

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

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

도구 소개

이 도구는 JSON 문자열을 TypeScript 인터페이스 정의로 변환하는 온라인 도구입니다.