JSON
{ "id": 1, "goal": "Read books", "titles": [ "The Hobbit", "The Lord of the Rings", "The Silmarillion" ], "completed": false }
Transform
Interface
interface Example { id: number; goal: string; titles: string[] completed: boolean; }
!--frsh-jsontointerface:0-->