Skip to content

Commit

Permalink
fix(Tags): missing class decorator define
Browse files Browse the repository at this point in the history
  • Loading branch information
jackey8616 committed Oct 15, 2024
1 parent 4abc6ee commit 5ee6d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime/src/decorators/tags.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function Tags(...values: string[]): MethodDecorator {
export function Tags(...values: string[]): ClassDecorator & MethodDecorator {
return () => {
return;
};
Expand Down

0 comments on commit 5ee6d28

Please sign in to comment.