@rive-app/canvas-single 2.25.3 → 2.25.4

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/canvas-single",
3
- "version": "2.25.3",
3
+ "version": "2.25.4",
4
4
  "description": "Rive's high-level canvas based web api all in one js file.",
5
5
  "main": "rive.js",
6
6
  "homepage": "https://rive.app",
package/rive.d.ts CHANGED
@@ -137,8 +137,8 @@ export interface Event {
137
137
  * Looping types: one-shot, loop, and ping-pong
138
138
  */
139
139
  export declare enum LoopType {
140
- OneShot = "oneshot",
141
- Loop = "loop",
140
+ OneShot = "oneshot",// has value 0 in runtime
141
+ Loop = "loop",// has value 1 in runtime
142
142
  PingPong = "pingpong"
143
143
  }
144
144
  /**