material-motion
Version:
Makes it easy to add rich, interactive motion to your application.
6 lines (5 loc) • 344 B
TypeScript
import { Constructor, MotionNextOperable, ObservableWithMotionOperators } from '../types';
export interface MotionInvertible<T> {
inverted<U extends T & number>(): ObservableWithMotionOperators<U>;
}
export declare function withInverted<T, S extends Constructor<MotionNextOperable<T>>>(superclass: S): S & Constructor<MotionInvertible<T>>;