babylonReference.ts 849 B

1234567891011121314151617181920
  1. /// <reference path="../../../dist/preview release/babylon.d.ts" />
  2. /// <reference path="../../../dist/preview release/loaders/babylon.glTF2FileLoader.d.ts" />
  3. /// <reference path="../../../dist/preview release/glTF2Interface/babylon.glTF2Interface.d.ts"/>
  4. /// <reference path="../../../dist/preview release/serializers/babylon.glTF2Serializer.d.ts" />
  5. /// <reference path="../node_modules/@types/chai/index.d.ts" />
  6. /// <reference path="../node_modules/@types/mocha/index.d.ts" />
  7. /// <reference path="../node_modules/@types/sinon/index.d.ts" />
  8. /*
  9. * Create a constant with the ChaiJS' expect module just to make the code more readable.
  10. */
  11. const should = chai.should();
  12. const expect = chai.expect;
  13. const assert = chai.assert;
  14. /**
  15. * Redirects the devtools used to load the dependencies.
  16. */
  17. declare var BABYLONDEVTOOLS: any;