Skip to content
OmniTool
⌘K
History
TS
JSON to TypeScript
Root name
JSON Input
{ "name": "John", "age": 30, "email": "john@example.com", "active": true }
TypeScript Output
Copy
export interface User { name: string; age: number; email: string; active: boolean; }