react-iiif-vault 1.3.2 → 1.3.3
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/bundle.d.ts +1 -1
- package/dist/bundle.global.js +9 -9
- package/dist/canvas-panel.cjs +5 -5
- package/dist/canvas-panel.js +1 -1
- package/dist/{chunk-37JMKXWA.js → chunk-IQAOSJY3.js} +7 -7
- package/dist/index.cjs +6 -6
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -820,7 +820,7 @@ type MediaPlayerActions = {
|
|
|
820
820
|
toggleMute(): void;
|
|
821
821
|
setVolume(volume: number): void;
|
|
822
822
|
setDurationPercent(percent: number): void;
|
|
823
|
-
setTime(time: number): void;
|
|
823
|
+
setTime(time: number | ((t: number) => number)): void;
|
|
824
824
|
};
|
|
825
825
|
declare function formatTime(time: number): string;
|
|
826
826
|
declare function useSimpleMediaPlayer(props: {
|