UNPKG

@urso/revolt-fx

Version:

Particle and Effect System for Pixi.js

19 lines (18 loc) 548 B
export declare class FXSignal { __hasCallback: boolean; private _list; constructor(); add(callback: Function, scope?: any, callRate?: number): void; addOnce(callback: Function, scope?: any): void; dispatch(...params: any[]): void; remove(callback: Function): void; removeAll(): void; } export declare class FXSignalListener { callback: Function; scope?: any; once?: boolean; callRate?: number; calls: number; constructor(callback: Function, scope?: any, once?: boolean, callRate?: number); }