Displays a deprecation warning message.
The deprecation message to display
Configuration options for the warning
// Basic usagedeprecationWarning("oldFunction() is deprecated. Use newFunction() instead.");// With removal versiondeprecationWarning("TerrainArea is deprecated.", { removeInVersion: "v0.3.0"});// Allow multiple warningsdeprecationWarning("Repeated warning", { once: false }); Copy
// Basic usagedeprecationWarning("oldFunction() is deprecated. Use newFunction() instead.");// With removal versiondeprecationWarning("TerrainArea is deprecated.", { removeInVersion: "v0.3.0"});// Allow multiple warningsdeprecationWarning("Repeated warning", { once: false });
Displays a deprecation warning message.