Type alias CacophonyEvents

CacophonyEvents: {
    cacheError: CacheErrorEvent;
    cacheHit: CacheHitEvent;
    cacheMiss: CacheMissEvent;
    globalPause: GlobalPlaybackEvent;
    globalPlay: GlobalPlaybackEvent;
    globalStop: GlobalPlaybackEvent;
    loadingComplete: LoadingCompleteEvent;
    loadingError: LoadingErrorEvent;
    loadingProgress: LoadingProgressEvent;
    loadingStart: LoadingStartEvent;
    mute: undefined;
    resume: undefined;
    suspend: undefined;
    unlock: undefined;
    unmute: undefined;
    volumeChange: number;
}

Global Cacophony events including loading and cache operations.

Type declaration