7 lines
216 B
TypeScript
Raw Normal View History

import type { IEncoder, IMessage } from "./message.js";
import { SDKProtocolResult } from "./protocols.js";
export interface ISender {
send: (encoder: IEncoder, message: IMessage) => Promise<SDKProtocolResult>;
}