├── app ├── bootstrap.js ├── bootstrap.ts ├── components │ ├── app.js │ ├── app.ts │ ├── artist │ │ ├── artist.js │ │ └── artist.ts │ └── search │ │ ├── search.js │ │ └── search.ts ├── services │ ├── spotify.js │ └── spotify.ts └── utils │ ├── fetch.js │ └── fetch.ts ├── index.html └── typings ├── _custom.d.ts ├── angular2 ├── angular2.d.ts └── router.d.ts ├── es6-promise └── es6-promise.d.ts └── rx └── rx.d.ts /app/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/bootstrap.js -------------------------------------------------------------------------------- /app/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/bootstrap.ts -------------------------------------------------------------------------------- /app/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/components/app.js -------------------------------------------------------------------------------- /app/components/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/components/app.ts -------------------------------------------------------------------------------- /app/components/artist/artist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/components/artist/artist.js -------------------------------------------------------------------------------- /app/components/artist/artist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/components/artist/artist.ts -------------------------------------------------------------------------------- /app/components/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/components/search/search.js -------------------------------------------------------------------------------- /app/components/search/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/components/search/search.ts -------------------------------------------------------------------------------- /app/services/spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/services/spotify.js -------------------------------------------------------------------------------- /app/services/spotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/services/spotify.ts -------------------------------------------------------------------------------- /app/utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/utils/fetch.js -------------------------------------------------------------------------------- /app/utils/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/app/utils/fetch.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/index.html -------------------------------------------------------------------------------- /typings/_custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/typings/_custom.d.ts -------------------------------------------------------------------------------- /typings/angular2/angular2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/typings/angular2/angular2.d.ts -------------------------------------------------------------------------------- /typings/angular2/router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/typings/angular2/router.d.ts -------------------------------------------------------------------------------- /typings/es6-promise/es6-promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/typings/es6-promise/es6-promise.d.ts -------------------------------------------------------------------------------- /typings/rx/rx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviddt/angular2-spotify-sample-app/HEAD/typings/rx/rx.d.ts --------------------------------------------------------------------------------