apollo-client-rxjs
Version:
Adds RxJS to ApolloClient
16 lines • 436 B
JavaScript
var ObservableQueryRef = (function () {
function ObservableQueryRef(ref) {
if (ref) {
this.setRef(ref);
}
}
ObservableQueryRef.prototype.setRef = function (ref) {
this.ref = ref;
};
ObservableQueryRef.prototype.getRef = function () {
return this.ref;
};
return ObservableQueryRef;
}());
export { ObservableQueryRef };
//# sourceMappingURL=ObservableQueryRef.js.map