UNPKG
@zodash/save-as
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Save Blob or Text as File
github.com/zcorky/zodash
zcorky/zodash
@zodash/save-as
/
lib
/
index.d.ts
5 lines
(4 loc)
•
233 B
TypeScript
View Raw
1
2
3
4
5
export
declare
function
isBlob
(
data
:
any
):
boolean
;
export
declare
function
saveAs
(
blob
:
Blob
,
filename
?:
string
):
Promise
<
void
>;
export
declare
function
saveAs
(
text
:
string
,
filename
?:
string
):
Promise
<
void
>;
export
default
saveAs;