@twin.org/blob-storage-models 0.0.1-next.19 → 0.0.1-next.20
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
|
@@ -32,7 +32,7 @@ The id of the stored blob in urn format.
|
|
|
32
32
|
|
|
33
33
|
### get()
|
|
34
34
|
|
|
35
|
-
> **get**(`id`): `Promise`\<`undefined` \| `Uint8Array
|
|
35
|
+
> **get**(`id`): `Promise`\<`undefined` \| `Uint8Array`\<`ArrayBufferLike`\>\>
|
|
36
36
|
|
|
37
37
|
Get the blob.
|
|
38
38
|
|
|
@@ -46,7 +46,7 @@ The id of the blob to get in urn format.
|
|
|
46
46
|
|
|
47
47
|
#### Returns
|
|
48
48
|
|
|
49
|
-
`Promise`\<`undefined` \| `Uint8Array
|
|
49
|
+
`Promise`\<`undefined` \| `Uint8Array`\<`ArrayBufferLike`\>\>
|
|
50
50
|
|
|
51
51
|
The data for the blob if it can be found or undefined.
|
|
52
52
|
|