Skip to content

Commit

Permalink
docs: fixed showing type in docs of Subscription (#5206)
Browse files Browse the repository at this point in the history
* docs: fixed showing type in docs of Subscription

* refactor: remove unnecessary type information

In part just to kick off CI. But also, because it's more correctererer.

Co-authored-by: Ben Lesh <ben@benlesh.com>
  • Loading branch information
polemius and benlesh authored Jun 10, 2020
1 parent d307e1e commit 3f3c614
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/internal/Subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ export class Subscription implements SubscriptionLike {

/**
* A flag to indicate whether this Subscription has already been unsubscribed.
* @type {boolean}
*/
public closed: boolean = false;
public closed = false;

/** @internal */
protected _parentOrParents: Subscription | Subscription[] | null = null;
Expand Down

0 comments on commit 3f3c614

Please sign in to comment.