mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
18 lines
356 B
TypeScript
18 lines
356 B
TypeScript
import {
|
|
Directive,
|
|
ViewContainerRef,
|
|
} from '@angular/core';
|
|
|
|
/**
|
|
* Directive used as a hook to know where to inject the dynamic loaded component
|
|
*/
|
|
@Directive({
|
|
selector: '[dsDsoEditMetadataValueFieldDirective]',
|
|
})
|
|
export class DsoEditMetadataValueFieldLoaderDirective {
|
|
constructor(
|
|
public viewContainerRef: ViewContainerRef,
|
|
) {
|
|
}
|
|
}
|