pixi.js
    Preparing search index...

    Type Alias AssetParserAdvanced

    AssetParser:
        | "json"
        | "svg"
        | "text"
        | "video"
        | "web-font"
        | "bitmap-font"
        | "spritesheet"
        | "texture"
        | "basis"
        | "dds"
        | "ktx2"
        | "ktx"
        | string & {}

    Names of the parsers that are built into PixiJS.

    Assets.load({
    src: assetToLoad,
    parser: 'json' // Use the built-in JSON parser
    });