import { ITransportInterface } from "./ITransportInterface";
export interface ITransportReciever {
    (iface: ITransportInterface, data: any): void;
}
