import { IGainOptions } from '../interfaces'; import { TNativeContext } from './native-context'; import { TNativeGainNode } from './native-gain-node'; export type TNativeGainNodeFactory = (nativeContext: TNativeContext, options: IGainOptions) => TNativeGainNode;