ddan-js 3.1.1 → 3.1.2
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/bin/ddan-js.browser.js +1 -1
- package/bin/ddan-js.js +1 -1
- package/bin/ddan-js.mjs +1 -1
- package/bin/modules/html.d.ts +4 -0
- package/bin/tiny/mini.d.ts +4 -0
- package/bin/tiny/web.d.ts +4 -0
- package/package.json +1 -1
package/bin/modules/html.d.ts
CHANGED
package/bin/tiny/mini.d.ts
CHANGED
package/bin/tiny/web.d.ts
CHANGED
|
@@ -118,6 +118,10 @@ declare const dWeb: {
|
|
|
118
118
|
height: number;
|
|
119
119
|
duration: number;
|
|
120
120
|
}>;
|
|
121
|
+
getImageMetadata: (source: string | Blob | File, timeout?: number) => Promise<{
|
|
122
|
+
width: number;
|
|
123
|
+
height: number;
|
|
124
|
+
}>;
|
|
121
125
|
};
|
|
122
126
|
rsa: {
|
|
123
127
|
generateKeys: () => Promise<{
|