Fix type in observeNavigation

This commit is contained in:
RMidhunSuresh 2022-05-29 20:38:14 +05:30
parent fc873757d8
commit ba647d012d

View file

@ -60,9 +60,9 @@ export class ViewModel<N extends object = SegmentType, O extends Options<N> = Op
return this._options[name]; return this._options[name];
} }
observeNavigation(type: string, onChange: (value: string | true | undefined, type: string) => void) { observeNavigation<T extends keyof N>(type: T, onChange: (value: N[T], type: T) => void) {
const segmentObservable = this.navigation.observe(type); const segmentObservable = this.navigation.observe(type);
const unsubscribe = segmentObservable.subscribe((value: string | true | undefined) => { const unsubscribe = segmentObservable.subscribe((value: N[T]) => {
onChange(value, type); onChange(value, type);
}) })
this.track(unsubscribe); this.track(unsubscribe);