Generate TypeScript interfaces from JSON.
interface MyInterface {
name: string;
age: number;
active: boolean;
}Paste a JSON object to generate a TypeScript interface. Nested objects are inlined; arrays use the type of the first element.
Is this tool free to use?
Does the tool run in the browser?
Is my data uploaded to a server?
Can I use this tool for large files?
Input
{"name": "x"}Output
interface T { name: string; }