I'm trying to import this fork of mark.js with the import statement,
import { Mark } from 'mark.ts'
When I attempt to set the constructor property,
constructor(private mark: Mark) { }
I get the error,
Can't resolve all parameters...
My understanding of TypeScript is very limited, and I assume this is some kind of issue with the import statement, so I haven't included any other code. Let me know if it's necessary.