mongodb-stitch
Version:
[](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
11 lines • 408 B
JavaScript
var StitchServiceClientImpl = (function () {
function StitchServiceClientImpl(proxy) {
this.proxy = proxy;
}
StitchServiceClientImpl.prototype.callFunction = function (name, args, codec) {
return this.proxy.callFunction(name, args, codec);
};
return StitchServiceClientImpl;
}());
export default StitchServiceClientImpl;
//# sourceMappingURL=StitchServiceClientImpl.js.map