Peter Bastiani 6555e68145
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Aw4751 eslint fixes
2023-03-06 14:04:14 +01:00

7 lines
194 B
TypeScript

import {Feature} from 'ol';
import { Style } from 'ol/style';
import {Geometry } from 'ol/geom';
export interface IStyles{
[id: string]: Style | ((featue:Feature<Geometry>) => Style);
}