Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/signals/rxjs-interop/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { rxMethod } from './rx-method';
export { rxMethod, RxMethod } from './rx-method';
2 changes: 1 addition & 1 deletion modules/signals/rxjs-interop/src/rx-method.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type RxMethodRef = {
destroy: () => void;
};

type RxMethod<Input> = ((
export type RxMethod<Input> = ((
input: Input | Signal<Input> | Observable<Input>,
config?: { injector?: Injector }
) => RxMethodRef) &
Expand Down
2 changes: 1 addition & 1 deletion modules/signals/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { deepComputed } from './deep-computed';
export { DeepSignal } from './deep-signal';
export { signalMethod } from './signal-method';
export { signalMethod, SignalMethod } from './signal-method';
export { signalState, SignalState } from './signal-state';
export { signalStore } from './signal-store';
export { signalStoreFeature, type } from './signal-store-feature';
Expand Down
2 changes: 1 addition & 1 deletion modules/signals/src/signal-method.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
untracked,
} from '@angular/core';

type SignalMethod<Input> = ((
export type SignalMethod<Input> = ((
input: Input | Signal<Input>,
config?: { injector?: Injector }
) => EffectRef) &
Expand Down