Type Alias CombineLatestToObject<T>

CombineLatestToObject<T>: {
    hasSource: ((field: string) => boolean);
    replaceSource: ((field: Extract<keyof T, string>, source: ReactiveOrSource<any>) => void);
    setWith: ((data: Partial<RxValueTypeObject<T>>) => Partial<RxValueTypeObject<T>>);
    sources: RxValueTypeRx<T>;
} & ReactiveDiff<RxValueTypeObject<T>> & ReactiveInitial<RxValueTypeObject<T>>

Type Parameters

Type declaration