[
Atlas
]
Herramientas
ES
/
EN
← Todas las herramientas
JSON to TypeScript Interface
Genera una interfaz de TypeScript a partir de un objeto JSON.
Nombre de la interfaz
{ "id": 1, "name": "Ana", "active": true, "tags": ["a", "b"] }
interface Root { id: number; name: string; active: boolean; tags: string[]; }