Skip to content

Commit

Permalink
fix(ISubscription): update type definition of ISubscription::closed (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj authored and benlesh committed Jan 13, 2017
1 parent eb462bf commit 0c304a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export type TeardownLogic = AnonymousSubscription | Function | void;

export interface ISubscription extends AnonymousSubscription {
unsubscribe(): void;
closed: boolean;
readonly closed: boolean;
}

/**
Expand Down

0 comments on commit 0c304a2

Please sign in to comment.