first commit
This commit is contained in:
21
wwwroot/lib/chart-js/core/core.animation.d.ts
vendored
Normal file
21
wwwroot/lib/chart-js/core/core.animation.d.ts
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
export default class Animation {
|
||||
constructor(cfg: any, target: any, prop: any, to: any);
|
||||
_active: boolean;
|
||||
_fn: any;
|
||||
_easing: any;
|
||||
_start: number;
|
||||
_duration: number;
|
||||
_total: number;
|
||||
_loop: boolean;
|
||||
_target: any;
|
||||
_prop: any;
|
||||
_from: unknown;
|
||||
_to: any;
|
||||
_promises: any[];
|
||||
active(): boolean;
|
||||
update(cfg: any, to: any, date: any): void;
|
||||
cancel(): void;
|
||||
tick(date: any): void;
|
||||
wait(): Promise<any>;
|
||||
_notify(resolved: any): void;
|
||||
}
|
||||
Reference in New Issue
Block a user