import { AUDIO_PARAM_CONNECTIONS_STORE } from '../globals'; import { IAudioParam } from '../interfaces'; import { TAudioParamConnections, TContext, TGetAudioParamConnectionsFunction } from '../types'; import { getValueForKey } from './get-value-for-key'; export const getAudioParamConnections: TGetAudioParamConnectionsFunction = ( audioParam: IAudioParam ): TAudioParamConnections => { return >getValueForKey(AUDIO_PARAM_CONNECTIONS_STORE, audioParam); };