import { DeepPartial } from '../deep-partial'; import { TweenOptions } from './opts'; import { Tween } from './tween'; export function tween(target: T, propDests: DeepPartial, opts: TweenOptions): Tween { return Tween.start(target, propDests, opts); }