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.
If you loading script manually through
<script/>
tag, you should usedeclare const Quagga: any;
instead of
import Quagga from './quagga.d';
But, in this case, no typings for
Quagga
class will be provided.