All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
7 lines
194 B
TypeScript
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);
|
|
} |