accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
14 lines (12 loc) • 418 B
text/typescript
import {
ISoundManagerAware,
} from '../../interfaces/ISoundManagerAware';
import {
IManager,
} from 'sound-manager';
export interface IGetSoundUtilities extends ISoundManagerAware {
readonly getGroup: IManager['collection']['getGroup'];
readonly getSound: IManager['collection']['getSound'];
readonly hasGroup: IManager['collection']['hasGroup'];
readonly hasSound: IManager['collection']['hasSound'];
}