Skip to content

Instantly share code, notes, and snippets.

@NovoManu
Created August 18, 2019 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NovoManu/962aad3e5d778be77cded1364335f432 to your computer and use it in GitHub Desktop.
Save NovoManu/962aad3e5d778be77cded1364335f432 to your computer and use it in GitHub Desktop.
export class BaseApi {
protected baseUrl: string = 'https://jsonplaceholder.typicode.com/'
async fetch(url: string): Promise<any> {
const response = await fetch(`${this.baseUrl}${url}`)
return await response.json()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment