UNPKG

@redpc/core

Version:

Remoted Procedure Call (RedPC) - A javascript RPC library written with TypeScript

11 lines (7 loc) 206 B
import { KnownTransports } from "types"; import { ITransport } from "./ITransport"; export interface ITransportProvider { getTransport( config: KnownTransports ): ITransport; }