@lottiefiles/dotlottie-web 0.40.0 → 0.40.2
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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -294,6 +294,7 @@ interface DotLottieInstanceState {
|
|
|
294
294
|
isStopped: boolean;
|
|
295
295
|
layout: Layout | undefined;
|
|
296
296
|
loop: boolean;
|
|
297
|
+
loopCount: number;
|
|
297
298
|
manifest: Manifest | null;
|
|
298
299
|
marker: string | undefined;
|
|
299
300
|
markers: Marker[];
|
|
@@ -324,6 +325,7 @@ declare class DotLottieWorker {
|
|
|
324
325
|
});
|
|
325
326
|
private _handleWorkerEvent;
|
|
326
327
|
private _create;
|
|
328
|
+
get loopCount(): number;
|
|
327
329
|
get isLoaded(): boolean;
|
|
328
330
|
get isPlaying(): boolean;
|
|
329
331
|
get isPaused(): boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -294,6 +294,7 @@ interface DotLottieInstanceState {
|
|
|
294
294
|
isStopped: boolean;
|
|
295
295
|
layout: Layout | undefined;
|
|
296
296
|
loop: boolean;
|
|
297
|
+
loopCount: number;
|
|
297
298
|
manifest: Manifest | null;
|
|
298
299
|
marker: string | undefined;
|
|
299
300
|
markers: Marker[];
|
|
@@ -324,6 +325,7 @@ declare class DotLottieWorker {
|
|
|
324
325
|
});
|
|
325
326
|
private _handleWorkerEvent;
|
|
326
327
|
private _create;
|
|
328
|
+
get loopCount(): number;
|
|
327
329
|
get isLoaded(): boolean;
|
|
328
330
|
get isPlaying(): boolean;
|
|
329
331
|
get isPaused(): boolean;
|