I have a script set on index.html page like this:
<head>
<script src="https://sandbox.web.squarecdn.com/v1/square.js"></script>
<head>
I'm trying to define it as an object and use it's functions in an angular component like this:
myFunction() {
Square.<square function>()
}
I've seen a few different ways of loading scripts in components but I haven't seen anything on how to actually use the contents of the script. I'm not sure where on the DOM I'm supposed to be looking to define an object with, if that's how you're supposed to go about this.