Just starting out with typescript and experimenting with the ES6 Symbol constructor. How can I address this ts lint problem without resorting to using any
?
const symbol = new Symbol(path);
I'm trying to avoid doing this:
const symbol = new (Symbol as any)(path);