UNPKG
@mt-kit/utils
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.0
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
一个常用的工具库
github.com/Not-have/micro-tools/tree/main/packages-utils
Not-have/micro-tools
@mt-kit/utils
/
dist
/
download-base64-file
/
index.d.ts
9 lines
(8 loc)
•
328 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * 根据 Base64 编码的字符串进行下载 *
@param
buf Base64 编码的字符串 *
@param
filename 保存的文件名 *
@param
mime 文件的 MIME 类型 *
@param
bom Blob 对象的 BlobPart 参数 */
export
default
function
downloadBase64File
(
buf:
string
, filename:
string
, mime?:
string
, bom?: BlobPart
):
void
;