JSON to TypeScript

Generate TypeScript interfaces from JSON data

💡 Example Input:

{
  "id": 1,
  "name": "John Doe",
  "email": "john@example.com",
  "isActive": true,
  "tags": ["developer", "designer"],
  "address": {
    "street": "123 Main St",
    "city": "San Francisco"
  }
}