babylonReference.ts 622 B

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