convert json to typescript interfaces · zod schemas · runs locally
options
json input
typescript interfaces
interface Address {
city: string;
zip: string;
}
interface User {
id: number;
name: string;
email: string;
roles: (string)[];
address: Address;
lastLogin?: null;
}
interface Root {
user: User;
}status
>ready