Zurück

Entwickler-Tools

JSON zu TypeScript

Wandle JSON in TypeScript-Typdefinitionen um.

Kategorie

Entwickler-Tools

Tags

jsontypescriptTyp Generatordeveloper
Mehr aus Entwickler-Tools
Eingabe

JSON zu TypeScript

jsontypescriptTyp Generatordeveloper
Ausgabe

Generated TypeScript types

type ToolPlanetResponse = {
  id: number;
  name: string;
  featured: boolean;
  tags: string[];
  stats: {
    tools: number;
  };
};