How To Use external plain JavaScript Libraries in TypeScript? Technology Community › Category: TypeScript › How To Use external plain JavaScript Libraries in TypeScript? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Include the library source file before the compiled TypeScript file In your TypeScript file before using the library, add declare var libGlobal: any; Use any library function just like normal .