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