@kemu-io/hs 0.4.45 → 0.4.46

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.
@@ -1,5 +1,17 @@
1
1
  // Generated by dts-bundle-generator v9.5.1
2
2
 
3
+ export type KemuObjectWrapper<O, DT extends DataType> = O & {
4
+ _kemuType: DT;
5
+ };
6
+ export type ImageDataLike = KemuObjectWrapper<{
7
+ /** the raw image data */
8
+ data: Uint8ClampedArray;
9
+ /** the width of the image */
10
+ width: number;
11
+ /** the height of the image */
12
+ height: number;
13
+ colorSpace: string;
14
+ }, DataType.ImageData>;
3
15
  export declare enum RecipeType {
4
16
  Browser = "browser",
5
17
  Cloud = "cloud",
@@ -1,5 +1,17 @@
1
1
  // Generated by dts-bundle-generator v9.5.1
2
2
 
3
+ export type KemuObjectWrapper<O, DT extends DataType> = O & {
4
+ _kemuType: DT;
5
+ };
6
+ export type ImageDataLike = KemuObjectWrapper<{
7
+ /** the raw image data */
8
+ data: Uint8ClampedArray;
9
+ /** the width of the image */
10
+ width: number;
11
+ /** the height of the image */
12
+ height: number;
13
+ colorSpace: string;
14
+ }, DataType.ImageData>;
3
15
  export declare enum RecipeType {
4
16
  Browser = "browser",
5
17
  Cloud = "cloud",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kemu-io/hs",
3
3
  "type": "module",
4
- "version": "0.4.45",
4
+ "version": "0.4.46",
5
5
  "description": "Kemu Hub Service - NodeJs library for creating Kemu Services",
6
6
  "author": "Kemu Pty Ltd",
7
7
  "main": "service.js",