UNPKG

dbgate-tools

Version:

Auxiliary tools for other DbGate packages.

5 lines (4 loc) 193 B
export interface AsyncWriteStreamOptions { processItem: (chunk: any) => Promise<void>; } export declare function createAsyncWriteStream(stream: any, options: AsyncWriteStreamOptions): any;