Asymmetrik/mean2-starter

View on GitHub
src/client/app/shared/asy-template.directive.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Directive, Input, TemplateRef } from '@angular/core';

@Directive({
    selector: 'template[asy-template]'
})
export class AsyTemplate {
    @Input('asy-template') type: string;

    constructor(public templateRef: TemplateRef<any>) { }
}