@twin.org/qr 0.0.1-next.46 → 0.0.1-next.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/docs/changelog.md
CHANGED
|
@@ -16,7 +16,7 @@ Class to render qr data as jpeg.
|
|
|
16
16
|
|
|
17
17
|
### render()
|
|
18
18
|
|
|
19
|
-
> `static` **render**(`cellData`, `options`?): `Promise`\<`Uint8Array
|
|
19
|
+
> `static` **render**(`cellData`, `options`?): `Promise`\<`Uint8Array`\<`ArrayBufferLike`\>\>
|
|
20
20
|
|
|
21
21
|
Render the QR code data as a bitmap.
|
|
22
22
|
|
|
@@ -36,6 +36,6 @@ The options for rendering.
|
|
|
36
36
|
|
|
37
37
|
#### Returns
|
|
38
38
|
|
|
39
|
-
`Promise`\<`Uint8Array
|
|
39
|
+
`Promise`\<`Uint8Array`\<`ArrayBufferLike`\>\>
|
|
40
40
|
|
|
41
41
|
The bitmap content.
|
|
@@ -16,7 +16,7 @@ Class to render qr data as png.
|
|
|
16
16
|
|
|
17
17
|
### render()
|
|
18
18
|
|
|
19
|
-
> `static` **render**(`cellData`, `options`?): `Promise`\<`Uint8Array
|
|
19
|
+
> `static` **render**(`cellData`, `options`?): `Promise`\<`Uint8Array`\<`ArrayBufferLike`\>\>
|
|
20
20
|
|
|
21
21
|
Render the QR code data as a bitmap.
|
|
22
22
|
|
|
@@ -36,6 +36,6 @@ The options for rendering.
|
|
|
36
36
|
|
|
37
37
|
#### Returns
|
|
38
38
|
|
|
39
|
-
`Promise`\<`Uint8Array
|
|
39
|
+
`Promise`\<`Uint8Array`\<`ArrayBufferLike`\>\>
|
|
40
40
|
|
|
41
41
|
The bitmap content.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/qr",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.48",
|
|
4
4
|
"description": "Package for creating QR codes",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/core": "0.0.1-next.
|
|
18
|
-
"@twin.org/image": "0.0.1-next.
|
|
17
|
+
"@twin.org/core": "0.0.1-next.48",
|
|
18
|
+
"@twin.org/image": "0.0.1-next.48",
|
|
19
19
|
"@twin.org/nameof": "next"
|
|
20
20
|
},
|
|
21
21
|
"main": "./dist/cjs/index.cjs",
|