Skip to content

Commit

Permalink
chore: update api_guardian
Browse files Browse the repository at this point in the history
  • Loading branch information
cartant committed Mar 8, 2021
1 parent 77fa1cb commit e927536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api_guard/dist/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export declare function combineLatest<A extends readonly unknown[]>(...sources:
export declare function combineLatest(sourcesObject: {
[K in any]: never;
}): Observable<never>;
export declare function combineLatest<T>(sourcesObject: T): Observable<{
export declare function combineLatest<T extends Record<any, ObservableInput<any>>>(sourcesObject: T): Observable<{
[K in keyof T]: ObservedValueOf<T[K]>;
}>;
export declare function combineLatest<O1 extends ObservableInput<any>, R>(sources: [O1], resultSelector: (v1: ObservedValueOf<O1>) => R, scheduler?: SchedulerLike): Observable<R>;
Expand Down

0 comments on commit e927536

Please sign in to comment.