UNPKG
@corpusant/wavesurfer.js
Version:
latest (7.9.0)
7.9.0
Audio waveform player
wavesurfer.xyz
katspaugh/wavesurfer.js
@corpusant/wavesurfer.js
/
dist
/
fetcher.d.ts
6 lines
(5 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
declare
function
fetchBlob
(
url
:
string
,
progressCallback
: (percentage:
number
) =>
void
,
requestInit
?:
RequestInit
):
Promise
<
Blob
>;
declare
const
Fetcher
: {
fetchBlob
:
typeof
fetchBlob; };
export
default
Fetcher
;