Cannot read property 'init' of undefined QuaggaJS

2k Views Asked by At

I'm currently using QuaggaJs in Angular 2 with the quagga.d.ts imported into a component. However I get the following error when loading the page:

Cannot read property 'init' of undefined

The component has QuaggaJS setup as follows:

import Quagga from './quagga.d';

export class AddHomeComponent {


  Quagga.init({
    inputStream: {
      name: "Live",
      type: "LiveStream"
    },
    decoder: {
      readers: ["code_128_reader"]
}
  }, function(err) {
  if (err) {
    console.log(err);
    return
  }
  console.log("Initialization finished. Ready to start");
  Quagga.start();
});


constructor(private queryservice: QueryService) {



}

}

The script is also loaded:

<script src="https://cdnjs.cloudflare.com/ajax/libs/quagga/0.11.6/quagga.min.js"></script>

I can't work out why this is happening? Any help would be greatly appreciated.

1

There are 1 best solutions below

2
On

If you loading script manually through <script/> tag, you should use

declare const Quagga: any;

instead of

import Quagga from './quagga.d';

But, in this case, no typings for Quagga class will be provided.