@pi-r/jimp 0.9.1 → 0.9.3
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/package.json +3 -3
- package/util.d.ts +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-r/jimp",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Jimp V0 image constructor for E-mc.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"homepage": "https://github.com/anpham6/pi-r#readme",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@e-mc/image": "^0.11.
|
|
23
|
-
"@e-mc/types": "^0.11.
|
|
22
|
+
"@e-mc/image": "^0.11.4",
|
|
23
|
+
"@e-mc/types": "^0.11.4",
|
|
24
24
|
"bmp-js": "^0.1.0",
|
|
25
25
|
"gifwrap": "^0.10.1",
|
|
26
26
|
"jimp": "^0.22.12"
|
package/util.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
declare namespace util {
|
|
2
|
-
function parseFormat(command: string, mimeType?: string, gif?: boolean): [string, string, string];
|
|
3
|
-
function renameExt(output: string, ext: string, replace?: boolean): string;
|
|
4
|
-
function normalizePath(value: string): string;
|
|
5
|
-
function getWebP_bin(name: string, pathname: string | undefined): string;
|
|
6
|
-
function showInputType(value: string | undefined, outputType: string, finalAs: string): string;
|
|
7
|
-
function showOutputType(value: string | undefined, outputType: string, finalAs: string): string;
|
|
8
|
-
}
|
|
9
|
-
|
|
1
|
+
declare namespace util {
|
|
2
|
+
function parseFormat(command: string, mimeType?: string, gif?: boolean): [string, string, string];
|
|
3
|
+
function renameExt(output: string, ext: string, replace?: boolean): string;
|
|
4
|
+
function normalizePath(value: string): string;
|
|
5
|
+
function getWebP_bin(name: string, pathname: string | undefined): string;
|
|
6
|
+
function showInputType(value: string | undefined, outputType: string, finalAs: string): string;
|
|
7
|
+
function showOutputType(value: string | undefined, outputType: string, finalAs: string): string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
10
|
export = util;
|