accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
26 lines (24 loc) • 459 B
text/typescript
import {
IGetSoundUtilities,
} from './IGetSoundUtilities';
import {
INamed,
} from '../../interfaces/INamed';
import {
IRendersPlaceholder,
} from '../../interfaces/IRendersPlaceholder';
import {
ReactNode,
} from 'react';
import {
ISound,
} from 'sound-manager';
export interface IGetSoundOwnProps extends
INamed,
Partial<IRendersPlaceholder>
{
readonly children: (
sound: ISound,
utilities: IGetSoundUtilities,
) => ReactNode;
}