continued refactoring listable objects

This commit is contained in:
lotte
2019-10-02 15:43:19 +02:00
parent 5353e889a3
commit 5b6aa951ad
101 changed files with 369 additions and 552 deletions

View File

@@ -0,0 +1,8 @@
import { Directive, ViewContainerRef } from '@angular/core';
@Directive({
selector: '[dsMetadataRepresentation]',
})
export class MetadataRepresentationDirective {
constructor(public viewContainerRef: ViewContainerRef) { }
}