From 5ee6d282d0198db214398bc840d3558214a31277 Mon Sep 17 00:00:00 2001 From: Clooooode Date: Tue, 15 Oct 2024 10:10:40 +0800 Subject: [PATCH] fix(Tags): missing class decorator define --- packages/runtime/src/decorators/tags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime/src/decorators/tags.ts b/packages/runtime/src/decorators/tags.ts index 6a2e18583..6ea9615d0 100644 --- a/packages/runtime/src/decorators/tags.ts +++ b/packages/runtime/src/decorators/tags.ts @@ -1,4 +1,4 @@ -export function Tags(...values: string[]): MethodDecorator { +export function Tags(...values: string[]): ClassDecorator & MethodDecorator { return () => { return; };