Trying to incorporate the following library: spotlight, a plain JavaScript library.
A dummy d.ts file was created for this project:
declare module 'spotlight.js'
as suggested by VSCode. Attempted various import combinations as follows:
import * as spotlight from 'spotlight';
import spotlight from 'spotlight';
import { spotlight } from 'spotlight';
However, within the code, the expression spotlight
is consistently an empty object.
What could be the issue here?