This interesting piece discusses the usage of a let-name
directive in the template:
<ng-template #testTemplate let-name>
<div>User {{ name }} </div>
</ng-template>
Can anyone tell me if this is a part of the standard angular/core
directives or is it something unique to angular/cdk
or perhaps an innovation by the author?