More type fixes

This commit is contained in:
Willem Dantuma
2021-10-05 14:08:55 +02:00
parent 160eb10aba
commit 5d21d66589
2 changed files with 4 additions and 4 deletions

View File

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