import { type TickerCallback } from 'pixi.js'; export interface UseTickOptions { /** @description The function to be called on each tick. */ callback: TickerCallback; /** @description The value of `this` within the callback. */ context?: T; /** @description Whether this callback is currently enabled. */ isEnabled?: boolean; /** @description The priority of this callback compared to other callbacks on the ticker. */ priority?: number; }