Skip to content

Commit

Permalink
(Fix) Bump package dependencies and fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpdaniels committed Aug 15, 2018
1 parent 5b4c03f commit 3b39bce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
"dependencies": {
"apollo-link": "^1.2.2",
"zen-observable": "^0.8.2"
"zen-observable-ts": "^0.8.9"
},
"peerDependencies": {
"graphql": "^0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion src/link.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {ApolloLink, FetchResult, NextLink, Observable, Operation, toPromise} from 'apollo-link'
import ZenObservable from 'zen-observable'
import {ZenObservable} from "zen-observable";

export type DeferredLinkFn = () => Promise<ApolloLink>;
export type FutureLink = Promise<ApolloLink> | Observable<ApolloLink> | DeferredLinkFn;
Expand Down

0 comments on commit 3b39bce

Please sign in to comment.