Skip to content

Commit

Permalink
refactor(ISubcription): remove add and remove methods from interface
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed May 22, 2016
1 parent 5fac2a2 commit 08f3d38
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ export type TeardownLogic = AnonymousSubscription | Function | void;
export interface ISubscription extends AnonymousSubscription {
unsubscribe(): void;
isUnsubscribed: boolean;
add(teardown: TeardownLogic): ISubscription;
remove(sub: ISubscription): void;
}

/**
Expand Down

0 comments on commit 08f3d38

Please sign in to comment.