UNPKG

sound-manager-ts

Version:

A lightweight, TypeScript-based Web Audio API manager for seamless sound control in web apps and games

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; }