Files
screenshot-tools/node_modules/chromium-bidi/lib/cjs/bidiServer/SimpleTransport.d.ts
Frank John Begornia c926590e1d first commit
2025-12-23 01:51:15 +08:00

14 lines
516 B
TypeScript

import { EventEmitter } from '../utils/EventEmitter';
/**
* Implements simple transport that allows sending string messages via
* `sendCommand` and receiving them via `on('message')`.
*/
export declare class SimpleTransport extends EventEmitter<Record<'message', string>> {
#private;
/**
* @param sendCommandDelegate delegate to be called in `sendCommand`.
*/
constructor(sendCommandDelegate: (plainCommand: string) => Promise<void>);
sendCommand(plainCommand: string): Promise<void>;
}