We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d905694 commit 3f1e308Copy full SHA for 3f1e308
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "ipycanvas",
3
- "version": "0.14.0",
+ "version": "0.14.1",
4
"description": "Interactive widgets library exposing the browser's Canvas API",
5
"keywords": [
6
"jupyter",
src/utils.ts
@@ -139,6 +139,7 @@ export async function toBytes(
139
export async function fromBytes(
140
array: Uint8ClampedArray
141
): Promise<HTMLImageElement> {
142
+ // @ts-ignore oh come on
143
const blob = new Blob([array]);
144
145
return new Promise<HTMLImageElement>((resolve, reject) => {
0 commit comments