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 committed Jan 4, 2017
1 parent 9c9870e commit abd3a2a
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 abd3a2a

Please sign in to comment.