UNPKG

@qyu/anim-core

Version:

Animation definition and implementation

10 lines (9 loc) 348 B
import type { Anim } from "../type/Anim.js"; export type AnimNewPlayback_Params<Point> = { readonly src: Anim<Point>; readonly config: AnimNewPlayback_Config; }; export type AnimNewPlayback_Config = { readonly multiplier: number; }; export declare const anim_new_playback: <Point>(params: AnimNewPlayback_Params<Point>) => Anim<Point>;