@hashbrownai/core
Version:
Runtime helpers for Hashbrown AI
16 lines • 384 B
TypeScript
import { Socket } from 'net';
export declare class SocketAsyncIterable {
socket: Socket;
buffer: any;
isDone: boolean;
pending: any[];
error: any;
constructor(socket: Socket);
dispatch(): void;
next(): Promise<{
value: any;
done: boolean;
}>;
[Symbol.asyncIterator](): this;
}
//# sourceMappingURL=socket-async-iterable.d.ts.map