11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
|
// #docregion
|
||
|
import { Directive, ViewContainerRef } from '@angular/core';
|
||
|
|
||
|
@Directive({
|
||
|
selector: '[ad-host]',
|
||
|
})
|
||
|
export class AdDirective {
|
||
|
constructor(public viewContainerRef: ViewContainerRef) { }
|
||
|
}
|
||
|
|