import { EventInterface } from 'microevent.ts'; import PoolMemberInterface from '../../tools/pool/PoolMemberInterface'; interface PCMAudioEndpointInterface { getSampleRate(): number; getFrameSize(): number; isPaused(): boolean; newFrame: EventInterface>; togglePause: EventInterface; } export { PCMAudioEndpointInterface as default };