Type Alias ParsedResultType

ParsedResultType: {
    byteLength: number;
    dispose: (() => void);
    scene: THREE.Object3D;
    textures: THREE.Texture[];
    type:
        | "b3dm"
        | "pnts"
        | "at3d"
        | "pbm"
        | "dome"
        | "domez"
        | "glb";
    uri: string;
}