mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 23:43:01 +00:00
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
import { Directive, Input } from '@angular/core';
|
|
|
|
/* eslint-disable @angular-eslint/directive-class-suffix */
|
|
@Directive({
|
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
selector: '[queryParams]',
|
|
})
|
|
export class QueryParamsDirectiveStub {
|
|
@Input() queryParams: any;
|
|
}
|