This repository was archived by the owner on Jan 19, 2019. It is now read-only.
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
Interface produces no-undef errors #437
Closed
Description
What version of TypeScript are you using?
2.6.2
What version of typescript-eslint-parser
are you using?
12.0.0
What code were you trying to parse?
interface Runnable {
run (): Result
toString (): string
}
What did you expect to happen?
Pass with no errors.
What happened?
> eslint **/*.{j,t}s
/Users/nick/Repos/purespec/matchers/Runnable.ts
1:11 error 'Runnable' is not defined no-undef
2:3 error 'run' is not defined no-undef
2:11 error 'Result' is not defined no-undef
✖ 3 problems (3 errors, 0 warnings)