Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5b0684 commit 1ec6857Copy full SHA for 1ec6857
libs/state/docs/api/rx-state.md
@@ -21,7 +21,7 @@ export class StatefulComponent {
21
22
```typescript
23
class RxState<T extends object> implements OnDestroy, Subscribable<T> {
24
- readonly readonly $: Observable<T> = this.accumulator.signal$;
+ readonly $: Observable<T> = this.accumulator.signal$;
25
26
connect(inputOrSlice$: Observable<Partial<T> | V>, projectFn?: ProjectStateReducer<T, V>) => void;
27
connect(key: K, slice$: Observable<T[K]>) => void;
0 commit comments