UNPKG

@tmigone/pulseaudio

Version:

A TypeScript based client library for PulseAudio.

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