Entwickler-Tools
JSON zu TypeScript
Wandle JSON in TypeScript-Typdefinitionen um.
Eingabe
JSON zu TypeScript
jsontypescriptTyp Generatordeveloper
Ausgabe
Generated TypeScript types
type ToolPlanetResponse = {
id: number;
name: string;
featured: boolean;
tags: string[];
stats: {
tools: number;
};
};
