TS defs issue fix #6904

This commit is contained in:
Richard Davey 2024-09-17 15:12:00 +01:00
parent ad5b38b1cb
commit 3057998965

View file

@ -2,7 +2,7 @@
* @typedef {object} Phaser.Types.Core.ImagesConfig
* @since 3.0.0
*
* @property {string} [default] - A base64 encoded image file to use as the 'default' texture.
* @property {string} [missing] - A base64 encoded image file to use as the 'missing' texture.
* @property {string} [white] - A base64 encoded image file to use as the 'white' texture.
* @property {(string|undefined|null)} [default] - A base64 encoded image file to use as the 'default' texture.
* @property {(string|undefined|null)} [missing] - A base64 encoded image file to use as the 'missing' texture.
* @property {(string|undefined|null)} [white] - A base64 encoded image file to use as the 'white' texture.
*/