UNPKG

sound-manager-ts

Version:

Lightweight TypeScript soundmanager for Web Audio API. Seamless audio control in web apps and games with full type safety and modern API

8 lines (7 loc) 193 B
import { PlayOptions } from './play-sound-options.interface'; export interface SoundGroup { id: string; sounds: Set<string>; maxInstances?: number; playOptions?: PlayOptions; }