@rive-app/webgl-single 2.7.0 → 2.7.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rive-app/webgl-single",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "description": "Rive's webgl based web api with bundled wasm.",
5
5
  "main": "rive.js",
6
6
  "homepage": "https://rive.app",
package/rive.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import * as rc from "./rive_advanced.mjs";
2
+ export type { FileAsset, FontAsset, ImageAsset } from './rive_advanced.mjs';
2
3
  /**
3
4
  * Generic type for a parameterless void callback
4
5
  */
@@ -547,4 +548,3 @@ export declare const decodeImage: (bytes: Uint8Array) => Promise<rc.Image>;
547
548
  * allows the engine to clean it up when it is not used by any more animations.
548
549
  */
549
550
  export declare const decodeFont: (bytes: Uint8Array) => Promise<rc.Font>;
550
- export {};