I have a file qux.d.ts
that does:
export * from "./foo.js"
export * from "./bar.js"
If both files export State
(whether type or value), how can I get TypeScript to throw an error?
NOTE: This ONLY fails to throw an error when exported via .d.ts
files.