Skip to content

Instantly share code, notes, and snippets.

@eladcandroid
Last active May 8, 2018 14:51
Show Gist options
  • Save eladcandroid/1e26bddc162d1a4716e376956a3ff19d to your computer and use it in GitHub Desktop.
Save eladcandroid/1e26bddc162d1a4716e376956a3ff19d to your computer and use it in GitHub Desktop.
places.ts
export default [
{
id: 1,
name: 'Syna_One',
type: 'Sfard',
address: {
street: 'Ahavat Israel',
numbers: 11,
city: 'Sderot',
country: 'Israel'
},
times: [
{
timeId: 1,
timeName: 'shaarit',
timeOclock: '7:00'
},
{
timeId: 2,
timeName: 'minha',
timeOclock: '16:00'
},
{
timeId: 3,
timeName: 'arvit',
timeOclock: '21:00'
}
]
},
{
id: 2,
name: 'Syna_Two',
address: {
street: 'Ahavat Israel',
numbers: 11,
city: 'Sderot',
country: 'Israel'
},
times: [
{
timeId: 1,
timeName: 'shaarit',
timeOclock: '7:00'
},
{
timeId: 2,
timeName: 'minha',
timeOclock: '16:00'
},
{
timeId: 3,
timeName: 'arvit',
timeOclock: '21:00'
}
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment