-
Notifications
You must be signed in to change notification settings - Fork 126
Open
Description
Within a module, which only exports one class, the easiest syntax to use is as follows:
export default class Foo {
}
However, it seems this could be incompatible with class decorators. Would the following work?
@dec
export default class Foo {
}
Or would you have to do:
@dec
class Foo {
}
export default Foo
chee
Metadata
Metadata
Assignees
Labels
No labels