UNPKG

@tmigone/pulseaudio

Version:

A TypeScript based client library for PulseAudio.

9 lines (8 loc) 280 B
import { PACommand } from '..'; import PAPacket from '../../packet'; import { Sink } from '../../types/pulseaudio'; interface GetSinkList extends PACommand<Sink[]> { query: (requestId: number) => PAPacket; } declare const GetSinkList: GetSinkList; export default GetSinkList;