Last active
May 8, 2018 14:51
-
-
Save eladcandroid/1e26bddc162d1a4716e376956a3ff19d to your computer and use it in GitHub Desktop.
places.ts
This file contains hidden or 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
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