HOME


Mini Shell 1.0
La Pieza.DO | Todo lo que buscas!

Bienvenido de nuevo!

Acceso Cuenta Delivery
DIR: /var/www/node-app/node_modules/chromium-bidi/lib/cjs/bidiServer/
Upload File :
Current File : /var/www/node-app/node_modules/chromium-bidi/lib/cjs/bidiServer/SimpleTransport.d.ts
import { EventEmitter } from '../utils/EventEmitter.js';
/**
 * 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>;
}