From d41baaa63c7e9cce36890eaa8e8d4aa99a8bbbac Mon Sep 17 00:00:00 2001 From: beefchimi Date: Wed, 20 Dec 2023 17:43:06 -0500 Subject: [PATCH] :label: [Sound] Include neverStarted prop on SoundEndedEvent --- src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types.ts b/src/types.ts index 83c0fd0..d635c4b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -61,6 +61,7 @@ export type SoundState = 'created' | 'playing' | 'paused' | 'stopping'; export interface SoundEndedEvent { id: SoundId; source: AudioBufferSourceNode; + neverStarted: boolean; } // eslint-disable-next-line @typescript-eslint/consistent-type-definitions