Created
October 12, 2017 20:37
-
-
Save Jatapiaro/f158dc51379e8c0c5ebbff667b33142a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fondas : any[] = [ | |
{ | |
name: "Yoshi's Island", | |
latitude: 10.98, | |
longitude: 44.98, | |
distance: 'A 2km de ti', | |
image: 'https://firebasestorage.googleapis.com/v0/b/fonditas-26794.appspot.com/o/images%2F1507702157.jpg?alt=media&token=38d98600-7f05-4c75-90cb-bdb73e5934c6', | |
description: 'Lorem ipsum de no se que locura', | |
dayMenu: { | |
starters: [ | |
{ | |
name: 'Sopa de fideo', | |
price: 10, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'Sopa de verduras', | |
price: 10, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'cualquier basura', | |
price: 50, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'Sopa de fideo', | |
price: 10, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'Sopa de verduras', | |
price: 10, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'cualquier basura', | |
price: 50, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'Sopa de fideo', | |
price: 10, | |
sold_out: true, | |
quantity: 0, | |
}, | |
{ | |
name: 'Sopa de verduras', | |
price: 10, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'cualquier basura', | |
price: 50, | |
sold_out: true, | |
quantity: 0, | |
} | |
], | |
mainDish: [ | |
{ | |
name: 'Bistek', | |
price: 30, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'Verdura', | |
price: 20, | |
sold_out: true, | |
quantity: 0, | |
} | |
], | |
desserts: [ | |
{ | |
name: 'Flan', | |
price: 0, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: 'Jamaica', | |
price: 0, | |
sold_out: false, | |
quantity: 0, | |
} | |
], | |
drinks: [ | |
{ | |
name: "Agua de Jamaica", | |
price: 0, | |
sold_out: false, | |
quantity: 0, | |
}, | |
{ | |
name: "Cerveza - Modelo", | |
price: 35, | |
sold_out: true, | |
quantity: 0, | |
} | |
] | |
} | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment