fix(packages/client): 🐛 Fix client types, and add missing banner schema for Instance

This commit is contained in:
Jesse Wierzbinski 2025-05-26 11:04:09 +02:00
parent 77cd27a458
commit 6d85dbdfcb
No known key found for this signature in database
3 changed files with 20 additions and 3 deletions

View file

@ -103,7 +103,7 @@ export class BaseClient {
}
/** Overridable by testing */
private fetch = fetch;
private fetch = (...args: Parameters<typeof fetch>) => fetch(...args);
private async request<ReturnType>(
request: Request,