Willem Dantuma af3340ed70
Some checks failed
FarmMaps/FarmMapsLib/pipeline/head There was a failure building this commit
Inject clicked feature in component
2021-12-02 11:13:36 +01:00

10 lines
254 B
TypeScript

import {Feature} from 'ol';
import {Geometry} from 'ol/geom';
import { Observable } from 'rxjs';
/**
* @deprecated This interface will be removed soon
*/
export interface IClickedFeature {
clickedFeature: Observable<Feature<Geometry>>
}