I have a project (nodejs) written in typescript I got two file that define User class, none of the is exported and though they are isolated i get duplicate error from the typescript compiler on both of these files
examples/hello_world.ts(3,7): error TS2300: Duplicate identifier 'User'.
examples/models/user.model.ts(2,7): error TS2300: Duplicate identifier 'User'.
Any ideas? Thanks