@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 +1 -1
- package/rive.d.ts +1 -1
- package/rive.js +2 -2
- package/rive.js.map +1 -1
- package/rive_advanced.mjs.d.ts +21 -1
package/package.json
CHANGED
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 {};
|