Skip to content

Commit

Permalink
export Memo insterface from signal.ts (solidjs#1261)
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav authored Oct 3, 2022
1 parent a3b81cf commit 43e7a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/solid/src/reactive/signal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ export function createReaction(onInvalidate: () => void, options?: EffectOptions
};
}

interface Memo<Prev, Next = Prev> extends SignalState<Next>, Computation<Next> {
export interface Memo<Prev, Next = Prev> extends SignalState<Next>, Computation<Next> {
tOwned?: Computation<Prev | Next, Next>[];
}

Expand Down

0 comments on commit 43e7a96

Please sign in to comment.