babylonReference.ts 719 B

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