Skip to content

Commit

Permalink
fix: small internal type mistake (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
divdavem authored Jun 14, 2024
1 parent debafe4 commit 7edb731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export interface SubscriberObject<T> {
[oldSubscription]?: Unsubscriber;
}

interface PrivateSubscriberObject<T> extends Omit<SubscriberObject<T>, 'oldSubscription'> {
interface PrivateSubscriberObject<T> extends Omit<SubscriberObject<T>, typeof oldSubscription> {
_value: T;
_valueIndex: number;
_paused: boolean;
Expand Down

0 comments on commit 7edb731

Please sign in to comment.