UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

26 lines (24 loc) 459 B
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; }