# Class: Animation
# Constructors
# constructor
+ new Animation(cfg
: Record<string, unknown>, target
: Record<string, unknown>, prop
: string, to?
: unknown): Animation
# Parameters:
Name | Type |
---|---|
cfg | Record<string, unknown> |
target | Record<string, unknown> |
prop | string |
to? | unknown |
Returns: Animation
Defined in: animation.d.ts:4 (opens new window)
# Methods
# active
▸ active(): boolean
Returns: boolean
Defined in: animation.d.ts:6 (opens new window)
# cancel
▸ cancel(): void
Returns: void
Defined in: animation.d.ts:8 (opens new window)
# tick
▸ tick(date
: number): void
# Parameters:
Name | Type |
---|---|
date | number |
Returns: void
Defined in: animation.d.ts:9 (opens new window)
# update
▸ update(cfg
: Record<string, unknown>, to
: unknown, date
: number): void
# Parameters:
Name | Type |
---|---|
cfg | Record<string, unknown> |
to | unknown |
date | number |
Returns: void
Defined in: animation.d.ts:7 (opens new window)