This repository was archived by the owner on Jan 19, 2019. It is now read-only.

Description
What version of TypeScript are you using?
2.4.2
What version of typescript-eslint-parser are you using?
5.0.1
What code were you trying to parse?
class MyFoo {}
export const Foo = MyFoo;
export type Foo = MyFoo;
What did you expect to happen?
No warnings/errors, this is valid TS.
What happened?
The no-redeclare rule was triggered since Foo had already been defined once.