1.0.1 • Published 6 years ago

api-transfer-manager v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

React Api Transfer Manager (wrapper for action requests)

export class NewsRepository implements NewsRepositoryInterface {
  constructor(api: ApiManager) {
    this.api = api
  }

  newsList() {
    return this.api.get('/news.json')
  }

  newsItem(slug: String) {
    return this.api.get(`/news/${slug}.json`)
  }
}
1.0.1

6 years ago

1.0.0

6 years ago