fixed warnings from eslint

This commit is contained in:
Altair-sh
2026-09-13 23:50:59 +02:00
parent 656bc318d6
commit e9ede28098
11 changed files with 91 additions and 54 deletions
+6
View File
@@ -0,0 +1,6 @@
// Node's fetch needs `duplex: 'half'` for stream bodies,
// but lib.dom's RequestInit doesn't declare it.
// This interface is automatically merged with RequestInit from lib.dom.d.ts
interface RequestInit {
duplex?: 'half'
}