babylonjs-gltf2interface 9.19.1 → 9.20.1

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.
@@ -1541,11 +1541,11 @@ declare namespace BABYLON.GLTF2 {
1541
1541
  */
1542
1542
  type NodeIndex = number;
1543
1543
  /**
1544
- * Value types supported (in js it is either boolean or number)
1544
+ * Value types supported (in js it is either boolean or number, or string for opaque references)
1545
1545
  */
1546
- type ValueType = (boolean | number)[];
1546
+ type ValueType = (boolean | number | string)[];
1547
1547
 
1548
- type ValueSignature = "bool" | "float" | "float2" | "float3" | "float4" | "float2x2" | "float3x3" | "float4x4" | "int" | "custom";
1548
+ type ValueSignature = "bool" | "float" | "float2" | "float3" | "float4" | "float2x2" | "float3x3" | "float4x4" | "int" | "ref" | "custom";
1549
1549
 
1550
1550
  type ConfigurationValueType = (boolean | number | string)[];
1551
1551
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "babylonjs-gltf2interface",
3
3
  "description": "A typescript declaration of babylon's gltf2 interface.",
4
- "version": "9.19.1",
4
+ "version": "9.20.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/BabylonJS/Babylon.js.git"