After reading through the TypeScript handbook, I realized that I couldn't find the solution to my problem.
What are my options if I'm using a library without existing typings?
The first option is to create the typings file myself, but I'm hesitant to do so.
I vaguely recall something about a 'declare' keyword - could that be an alternative?
Or perhaps there's a solution within the tsconfig?
I believe there must be a way to declare the variable (type) globally so it works every time I need it.
And I assume there's also a method to restrict its availability to just one file.
Naturally, including a typings file would be ideal, but that may not always be an option.