material-motion
Version:
Makes it easy to add rich, interactive motion to your application.
7 lines (6 loc) • 504 B
TypeScript
import { MaybeReactive, NumericallyKeyed, ObservableWithMotionOperators } from './types';
export declare type CombineLatestOptions = {
waitForAllValues?: boolean;
};
export declare function combineLatest<V, T extends MaybeReactive<NumericallyKeyed<V>>, U extends Array<V>>(streams: T, options?: CombineLatestOptions): ObservableWithMotionOperators<U>;
export declare function combineLatest<U, T extends MaybeReactive<U>>(streams: T, options?: CombineLatestOptions): ObservableWithMotionOperators<U>;