fix(contextoutlet): fix error

This commit is contained in:
ThomasL
2023-06-28 17:37:39 +02:00
parent 2a8b8ea59e
commit f577efb1fc

View File

@@ -29,5 +29,5 @@ export class ListComponent<TItem extends object> {
@Input() list!: TItem[];
@ContentChild('listRef', { read: TemplateRef })
listTemplateRef!: TemplateRef<TItem[]>;
listTemplateRef!: TemplateRef<unknown>;
}