no need for this

This commit is contained in:
2026-02-14 00:04:11 +00:00
parent c00f2b8f2f
commit 6b3b9be356

5
types.d.ts vendored
View File

@ -22,9 +22,4 @@ interface APISuccess<T> {
payload: T;
}
interface APIQueryParams {
query: string;
lucky?: string;
}
type APIResult<T> = APIError | APISuccess<T>;