@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
19 lines (16 loc) • 488 B
text/typescript
import { SoundPlay } from '../interface/export/ExportedSounds.cjs';
import Sound from '../classes/Sound.cjs';
import '../interface/SoundOptions.cjs';
import '@pixi/sound';
import '../types/SoundFilterMemory.cjs';
declare class SoundManagerStatic {
private constructor();
static soundAliasesOrder: string[];
static soundsPlaying: {
[key: string]: SoundPlay;
};
static sounds: {
[key: string]: Sound;
};
}
export { SoundManagerStatic as default };