9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
/**
|
|
* Logs a PixiJS warning message to the console. Stops logging after 500 warnings have been logged.
|
|
* @param args - The warning message(s) to log
|
|
* @returns {void}
|
|
* @memberof utils
|
|
* @ignore
|
|
*/
|
|
export declare function warn(...args: any[]): void;
|