Some checks failed
FarmMaps/FarmMapsLib/pipeline/head There was a failure building this commit
10 lines
254 B
TypeScript
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>>
|
|
} |