Skip to content

Commit 1058ce8

Browse files
authoredAug 7, 2024··
fix(types): allow DirectiveArguments third parameter to accept undefined (#11540)
1 parent 7e75de0 commit 1058ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/runtime-core/src/directives.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export type DirectiveArguments = Array<
7878
| [Directive | undefined]
7979
| [Directive | undefined, any]
8080
| [Directive | undefined, any, string]
81-
| [Directive | undefined, any, string, DirectiveModifiers]
81+
| [Directive | undefined, any, string | undefined, DirectiveModifiers]
8282
>
8383

8484
/**

0 commit comments

Comments
 (0)
Please sign in to comment.