UNPKG

@qyu/anim-core

Version:

Animation definition and implementation

7 lines (6 loc) 272 B
import type { Anim } from "../type/Anim.js"; export type AnimChain_Point<ChildPoint> = { readonly ptr: number; readonly child: ChildPoint; }; export declare const anim_new_chain: <ChildPoint>(src: readonly Anim<ChildPoint>[]) => Anim<AnimChain_Point<ChildPoint>>;