Open
Description
π Search Terms
JSDoc
implements
space
'}' expected
π Version & Regression Information
This is the behavior in every version I tried
β― Playground Link
π» Code
/**
* @typedef { { foo: string } } Foo
*/
/**
* @implements { Foo } // <-- '}' expected.
*/
class Bar {
foo = "42";
}
π Actual behavior
'}' expected
π Expected behavior
alow using whitespaces like in every other jsdoc tag
Additional information about the issue
No response