Closed
Description
Bug Report
π Search Terms
ts1193
"An export declaration cannot have modifiers."
π Version & Regression Information
- This changed between versions 4.5.5 and 4.6.2
β― Playground Link
Playground link with relevant code
π» Code
/**
* @deprecated
*/
export { default as C } from './include-c';
π Actual behavior
I got error TS1193: An export declaration cannot have modifiers
. When I remove the @deprecated
tag, it disappears.
π Expected behavior
Having a @deprecated
tag should not trigger this error.