UNPKG
@qyu/anim-core
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Animation definition and implementation
github.com/qlwt/anim-core
qlwt/anim-core
@qyu/anim-core
/
build
/
declaration
/
anim
/
new
/
chain.d.ts
7 lines
(6 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
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
>>;