web: add api response types & clean up DownloadButton

This commit is contained in:
wukko
2024-06-16 18:53:45 +06:00
parent 1f2c28bd02
commit 3554222f42
3 changed files with 75 additions and 18 deletions

View File

@@ -1,3 +1,5 @@
import type { CobaltAPIResponse } from "$lib/types/api";
const apiURL = "https://api.cobalt.tools";
const request = async (url: string) => {
@@ -5,7 +7,7 @@ const request = async (url: string) => {
url
}
const response = await fetch(`${apiURL}/api/json`, {
const response: CobaltAPIResponse | undefined = await fetch(`${apiURL}/api/json`, {
method: "POST",
body: JSON.stringify(request),
headers: {