JSON zu TypeScript

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

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

Einführung in das Tool

Dieses Tool ist ein Online-Tool zum Konvertieren von JSON-Strings in TypeScript-Interface-Definitionen.