Fix type in observeNavigation

This commit is contained in:
RMidhunSuresh 2022-05-29 20:38:14 +05:30
parent fc873757d8
commit ba647d012d
1 changed files with 2 additions and 2 deletions

View File

@ -60,9 +60,9 @@ export class ViewModel<N extends object = SegmentType, O extends Options<N> = Op
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 unsubscribe = segmentObservable.subscribe((value: string | true | undefined) => {
const unsubscribe = segmentObservable.subscribe((value: N[T]) => {
onChange(value, type);
})
this.track(unsubscribe);