Skip to content

Commit

Permalink
Fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ofekby committed Dec 4, 2023
1 parent 2e02606 commit 48cab74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/deriveState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type DerivedState<T> = Disposable & EventEmitterBasedState<T>;
export type DerivedNonNullState<T> = Disposable &
EventEmitterBasedNonNullState<T>;

export default function deriveState<I, O>(
function deriveState<I, O>(
state: EventEmitterBasedState<I>,
mapping: (value: I) => O
): DerivedState<O> {
Expand Down

0 comments on commit 48cab74

Please sign in to comment.