feat: fetch stream compatibility enhance (#1551)

This commit is contained in:
Ricky
2023-11-20 15:30:32 +08:00
committed by GitHub
parent 31195975f5
commit 657334a5fd
4 changed files with 33 additions and 2 deletions

5
web/global.d.ts vendored
View File

@@ -1,2 +1,5 @@
declare module 'lamejs';
declare module 'react-18-input-autosize';
declare module 'react-18-input-autosize';
declare module 'fetch-readablestream' {
export default function fetchReadableStream(url: string, options?: RequestInit): Promise<Response>
}