UNPKG

nodram

Version:
15 lines (9 loc) 386 B
import {TransportService} from "./TransportService"; export class Request{ constructor(protected transportService: TransportService){} public performRequest(requestName,requestArgs){ let requestObject = this[requestName](...requestArgs); //lets now perform the request return this.transportService.sendToServer(requestObject); } }