UNPKG

@tmigone/pulseaudio

Version:

A TypeScript based client library for PulseAudio.

8 lines (7 loc) 214 B
export interface Iterator<T> extends IterableIterator<T> { nextValue: () => any; done: boolean; length: number; index: number; } export declare function createIterator(array: any[]): Iterator<any>;