Skip to content

Commit 899d9b0

Browse files
committed
fixes
1 parent af97db3 commit 899d9b0

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/howler.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ export type HowlerAudioContext = Omit<AudioContext, 'state'> & {
1616
state: AudioContextState | 'interrupted';
1717
};
1818

19-
// IDEA: Maybe use TS private properties to create clearer contexts.
20-
2119
class Howler {
2220
// Public properties.
2321
masterGain: GainNode | null = null;

src/sound.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/**
2-
* TODO: pass the howler instance reference to each sound that is created instead of using a global variable
3-
* TODO: update the sound id generator to be common across all modules.
4-
*
5-
* IDEA: Maybe use ES private properties, as they can be compiled away with esbuild + TS.
6-
*/
7-
81
import Howler, { HowlerAudioElement } from './howler';
92
import Howl from './howl';
103

0 commit comments

Comments
 (0)