UNPKG

@dcl/ecs

Version:
10 lines (9 loc) 262 B
import { Entity, IEngine } from '../engine'; export type TweenSystem = { tweenCompleted(entity: Entity): boolean; }; /** * @public * @returns tween helper to be used on the scene */ export declare function createTweenSystem(engine: IEngine): TweenSystem;