babylonjs-loaders 6.34.0 → 6.34.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3452,7 +3452,7 @@ export class GLTFValidation {
3452
3452
  * @param getExternalResource The callback to get external resources for the glTF validator
3453
3453
  * @returns A promise that resolves with the glTF validation results once complete
3454
3454
  */
3455
- static ValidateAsync(data: string | ArrayBufferView, rootUrl: string, fileName: string, getExternalResource: (uri: string) => Promise<ArrayBuffer>): Promise<GLTF2.IGLTFValidationResults>;
3455
+ static ValidateAsync(data: string | Uint8Array, rootUrl: string, fileName: string, getExternalResource: (uri: string) => Promise<Uint8Array>): Promise<GLTF2.IGLTFValidationResults>;
3456
3456
  }
3457
3457
 
3458
3458
  }
@@ -7450,7 +7450,7 @@ declare module BABYLON {
7450
7450
  * @param getExternalResource The callback to get external resources for the glTF validator
7451
7451
  * @returns A promise that resolves with the glTF validation results once complete
7452
7452
  */
7453
- static ValidateAsync(data: string | ArrayBufferView, rootUrl: string, fileName: string, getExternalResource: (uri: string) => Promise<ArrayBuffer>): Promise<GLTF2.IGLTFValidationResults>;
7453
+ static ValidateAsync(data: string | Uint8Array, rootUrl: string, fileName: string, getExternalResource: (uri: string) => Promise<Uint8Array>): Promise<GLTF2.IGLTFValidationResults>;
7454
7454
  }
7455
7455
 
7456
7456
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-loaders",
3
- "version": "6.34.0",
3
+ "version": "6.34.2",
4
4
  "main": "babylonjs.loaders.js",
5
5
  "types": "babylonjs.loaders.module.d.ts",
6
6
  "files": [
@@ -15,8 +15,8 @@
15
15
  "test:escheck": "es-check es6 ./babylonjs.loaders.js"
16
16
  },
17
17
  "dependencies": {
18
- "babylonjs": "^6.34.0",
19
- "babylonjs-gltf2interface": "^6.34.0"
18
+ "babylonjs": "^6.34.2",
19
+ "babylonjs-gltf2interface": "^6.34.2"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@dev/build-tools": "1.0.0",