mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 15:03:07 +00:00
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
import { Directive, ViewContainerRef } from '@angular/core';
|
|
|
|
@Directive({
|
|
selector: '[dsMetadataRepresentation]',
|
|
})
|
|
export class MetadataRepresentationDirective {
|
|
constructor(public viewContainerRef: ViewContainerRef) { }
|
|
} |