I have added its script to angular.json
file.
"scripts": ["./src/assets/js/lightgallery.js"]
and its styles to style.scss
file
@import "./assets/externals/lightgallery.css";
and in my component I have tried that:
declare var lightGallery: any;
ngOnInit() {
lightGallery(document.getElementById('lightgallery'));
}
and its giving the error:
ERROR ReferenceError: lightGallery is not defined
Any suggestion what I am doing wrong?