Add @Directive attributes

This commit is contained in:
Willem Dantuma
2020-04-01 10:05:44 +02:00
parent a5a7e1ece1
commit 511f1f4731
5 changed files with 72 additions and 66 deletions

View File

@@ -1,4 +1,4 @@
import {Component, Injectable, Input} from '@angular/core';
import {Component, Injectable, Input, Directive} from '@angular/core';
import {Location} from '@angular/common';
import {Store} from '@ngrx/store';
import * as mapReducers from '../../reducers/map.reducer';
@@ -9,6 +9,7 @@ import { IItemLayer } from '../../models/item.layer';
@Injectable()
@Directive()
export abstract class AbstractSelectedItemComponent {
@Input() item: IItem
@Input() itemLayer: IItemLayer;