New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

babylonjs-gltf2interface

Package Overview
Dependencies
Maintainers
1
Versions
644
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babylonjs-gltf2interface - npm Package Compare versions

Comparing version 3.3.0-beta.5 to 3.3.0-beta.6

50

babylon.glTF2Interface.d.ts

@@ -9,3 +9,3 @@ /**

/**
* Moduel for glTF 2.0 Interface
* Module for glTF 2.0 Interface
*/

@@ -857,1 +857,49 @@ declare module BABYLON.GLTF2 {

}
/**
* Interface for glTF validation results
*/
interface IGLTFValidationResults {
info: {
generator: string;
hasAnimations: boolean;
hasDefaultScene: boolean;
hasMaterials: boolean;
hasMorphTargets: boolean;
hasSkins: boolean;
hasTextures: boolean;
maxAttributesUsed: number;
primitivesCount: number
};
issues: {
messages: Array<string>;
numErrors: number;
numHints: number;
numInfos: number;
numWarnings: number;
truncated: boolean
};
mimeType: string;
uri: string;
validatedAt: string;
validatorVersion: string;
}
/**
* Interface for glTF validation options
*/
interface IGLTFValidationOptions {
uri?: string;
externalResourceFunction?: (uri: string) => Promise<Uint8Array>;
validateAccessorData?: boolean;
maxIssues?: number;
ignoredIssues?: Array<string>;
severityOverrides?: Object;
}
/**
* glTF validator object
*/
declare var GLTFValidator: {
validateString: (json: string, options?: IGLTFValidationOptions) => Promise<IGLTFValidationResults>;
};

2

package.json
{
"name": "babylonjs-gltf2interface",
"description": "A typescript declaration of babylon's gltf2 inteface.",
"version": "3.3.0-beta.5",
"version": "3.3.0-beta.6",
"repository": {

@@ -6,0 +6,0 @@ "type": "git",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc