[
Atlas
]
Tools
ES
/
EN
← All tools
JSON to TypeScript Interface
Generate a TypeScript interface from a JSON object.
Interface name
{ "id": 1, "name": "Ana", "active": true, "tags": ["a", "b"] }
interface Root { id: number; name: string; active: boolean; tags: string[]; }