Last active
August 18, 2019 16:08
-
-
Save NovoManu/bab231658be4b80d3defde32ad755dc1 to your computer and use it in GitHub Desktop.
This file contains 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 class Api { | |
private baseUrl: string = 'https://jsonplaceholder.typicode.com/' | |
constructor(private url: string) {} | |
async fetch() { | |
const response = await fetch(`${this.baseUrl}${this.url}`) | |
return await response.json() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment