Dependency refactor #17

Merged
nomadjimbob merged 155 commits from dependency-refactor into main 2023-02-27 12:30:57 +00:00
Showing only changes of commit 3ca5db394a - Show all commits

View File

@@ -15,6 +15,7 @@ interface ApiOptions {
method?: string;
headers?: HeadersInit;
body?: string | object;
signal?: AbortSignal | null;
progress?: ApiProgressCallback;
}
@@ -64,6 +65,7 @@ export const api = {
method: options.method || "GET",
headers: options.headers,
body: options.body,
signal: options.signal || null,
};
let receivedData = false;