···3738// Dashboard components
39export * as Dashboard from "./components/dashboard";
0000
···3738// Dashboard components
39export * as Dashboard from "./components/dashboard";
40+41+// Storage exports
42+export { default as storage } from "./storage";
43+export type { AQStorage } from "./storage/storage.shared";
-12
js/components/src/player-store/player-state.tsx
···69 /** Function to set the ingestStarted timestamp */
70 setIngestStarted: (timestamp: number | null) => void;
7172- /** Player muted state */
73- muted: boolean;
74-75- /** Function to set the muted state */
76- setMuted: (isMuted: boolean) => void;
77-78- /** Player volume level (0.0 to 1.0) */
79- volume: number;
80-81- /** Function to set the volume level */
82- setVolume: (volume: number) => void;
83-84 /** Player fullscreen state */
85 fullscreen: boolean;
86
···69 /** Function to set the ingestStarted timestamp */
70 setIngestStarted: (timestamp: number | null) => void;
7100000000000072 /** Player fullscreen state */
73 fullscreen: boolean;
74