declare module '@pixi/ticker' { export enum UPDATE_PRIORITY { INTERACTION = 50, HIGH = 25, NORMAL = 0, LOW = -25, UTILITY = -50, } export type TickerCallback = (this: T, dt: number) => any; export class Ticker { add(fn: TickerCallback, context: T, priority: UPDATE_PRIORITY.NORMAL): this; remove(fn: TickerCallback, context: T): this; } }