Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit a4ebeb1

Browse files
committed
Add missing Params layer to signature Blocks expansion
1 parent febb6b8 commit a4ebeb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@glimmer/component/addon/-private/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ type _ExpandSignature<T> = {
6868
Blocks: 'Blocks' extends keyof T
6969
? {
7070
[Block in keyof T['Blocks']]: T['Blocks'][Block] extends unknown[]
71-
? { Positional: T['Blocks'][Block] }
71+
? { Params: { Positional: T['Blocks'][Block] } }
7272
: T['Blocks'][Block];
7373
}
7474
: EmptyObject;

0 commit comments

Comments
 (0)