@@ -185,24 +185,63 @@ const datasetWithNests = [
185185 { id : 7 , title : "The Hitchhiker's Guide to the Galaxy" } ,
186186] ;
187187
188- const dataset : { id : number ; title : string ; comment ?: string } [ ] = [
189- { id : 123 , title : "Pride and Prejudice" , comment : "A great book" } ,
190- { id : 456 , title : "Le Petit Prince" , comment : "A french book" } ,
191- { id : 2 , title : "Le Rouge et le Noir" , comment : "Another french book" } ,
192- { id : 1 , title : "Alice In Wonderland" , comment : "A weird book" } ,
193- { id : 1344 , title : "The Hobbit" , comment : "An awesome book" } ,
188+ const dataset : Book [ ] = [
189+ {
190+ id : 123 ,
191+ title : "Pride and Prejudice" ,
192+ comment : "A great book" ,
193+ genre : [ "romance" , "classic" , "literary fiction" ] ,
194+ author : "Jane Austen" ,
195+ } ,
196+ {
197+ id : 456 ,
198+ title : "Le Petit Prince" ,
199+ comment : "A french book" ,
200+ genre : [ "children" , "fantasy" , "philosophical" ] ,
201+ author : "Antoine de Saint-Exupéry" ,
202+ } ,
203+ {
204+ id : 2 ,
205+ title : "Le Rouge et le Noir" ,
206+ comment : "Another french book" ,
207+ genre : [ "classic" , "psychological" , "historical fiction" ] ,
208+ author : "Stendhal" ,
209+ } ,
210+ {
211+ id : 1 ,
212+ title : "Alice In Wonderland" ,
213+ comment : "A weird book" ,
214+ genre : [ "fantasy" , "children" , "classics" ] ,
215+ author : "Lewis Carroll" ,
216+ } ,
217+ {
218+ id : 1344 ,
219+ title : "The Hobbit" ,
220+ comment : "An awesome book" ,
221+ genre : [ "fantasy" , "adventure" , "young adult" ] ,
222+ author : "J.R.R. Tolkien" ,
223+ } ,
194224 {
195225 id : 4 ,
196226 title : "Harry Potter and the Half-Blood Prince" ,
197227 comment : "The best book" ,
228+ genre : [ "fantasy" , "young adult" , "magic" ] ,
229+ author : "J.K. Rowling" ,
230+ } ,
231+ {
232+ id : 42 ,
233+ title : "The Hitchhiker's Guide to the Galaxy" ,
234+ genre : [ "science fiction" , "comedy" , "satire" ] ,
235+ author : "Douglas Adams" ,
198236 } ,
199- { id : 42 , title : "The Hitchhiker's Guide to the Galaxy" } ,
200237] ;
201238
202239export type Book = {
203240 id : number ;
204241 title : string ;
205- comment : string ;
242+ comment ?: string ;
243+ genre : string [ ] ;
244+ author : string ;
206245} ;
207246
208247export {
0 commit comments