@minto-ai/tools 1.0.47 → 1.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/file/extends/enum.d.ts +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
* 文件后缀类型枚举
|
|
3
3
|
*/
|
|
4
4
|
declare const FileSuffixEnum: {
|
|
5
|
-
readonly DOC: "doc";
|
|
6
5
|
readonly DOCX: "docx";
|
|
6
|
+
readonly DOC: "doc";
|
|
7
7
|
readonly PDF: "pdf";
|
|
8
|
-
readonly PPT: "ppt";
|
|
9
8
|
readonly PPTX: "pptx";
|
|
10
|
-
readonly
|
|
9
|
+
readonly PPT: "ppt";
|
|
11
10
|
readonly XLSX: "xlsx";
|
|
11
|
+
readonly XLS: "xls";
|
|
12
12
|
readonly JPG: "jpg";
|
|
13
13
|
readonly PNG: "png";
|
|
14
14
|
readonly JPEG: "jpeg";
|
package/dist/index.js
CHANGED
|
@@ -13185,13 +13185,13 @@ function objectToQueryString(obj) {
|
|
|
13185
13185
|
}).join("&");
|
|
13186
13186
|
}
|
|
13187
13187
|
var FileSuffixEnum = {
|
|
13188
|
-
DOC: "doc",
|
|
13189
13188
|
DOCX: "docx",
|
|
13189
|
+
DOC: "doc",
|
|
13190
13190
|
PDF: "pdf",
|
|
13191
|
-
PPT: "ppt",
|
|
13192
13191
|
PPTX: "pptx",
|
|
13193
|
-
|
|
13192
|
+
PPT: "ppt",
|
|
13194
13193
|
XLSX: "xlsx",
|
|
13194
|
+
XLS: "xls",
|
|
13195
13195
|
JPG: "jpg",
|
|
13196
13196
|
PNG: "png",
|
|
13197
13197
|
JPEG: "jpeg",
|