export { default as InMemory } from './InMemory'; export interface Connection { open(): Promise; write(data: Buffer): Promise; close(): Promise; }