chore: unused types and functions removed, api url moved to .env

This commit is contained in:
2025-08-15 23:29:39 +03:30
parent 07eb2e7d64
commit e9b43b9e53
5 changed files with 3 additions and 36 deletions

View File

@@ -1,5 +0,0 @@
export type FetchPromise<T = ''> = Promise<FetchResponse<T>>;
export interface FetchResponse<T> extends Response {
json(): Promise<T>;
}