run npm format

This commit is contained in:
DerPenz
2023-04-15 18:32:53 +02:00
parent 6c361002bf
commit 2b26b7b848
10 changed files with 161 additions and 60 deletions

View File

@@ -8,7 +8,7 @@ export default class Api {
this.accessToken = accessToken;
}
async get<T>(path: string, options?: Record<string,any>): Promise<T> {
async get<T>(path: string, options?: Record<string, any>): Promise<T> {
const params = parseOptions(options);
const response = await fetch(`${BASE_URL_V3}${path}?${params}`, {
method: 'GET',