JSON naar TypeScript

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

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

Inleiding tot het hulpmiddel

Deze tool is een online tool voor het converteren van JSON-strings naar TypeScript-interfacedefinities.