The list of audio MIME types recognized as "known" file types by loadAudioSource().
const SUPPORTED_FILE_TYPES: string[];
SUPPORTED_FILE_TYPES is a constant array of MIME type strings. loadAudioSource() checks a resolved file's MIME type against this list and logs a warning (but still proceeds) when a file's type is not in the list.
[
"audio/aac",
"audio/mp3",
"audio/mpeg",
"audio/ogg",
"audio/wav",
"audio/wave",
"audio/webm"
]
This constant does not emit any errors or warnings by itself.