7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
import {Feature} from 'ol';
|
|
import { Style } from 'ol/style';
|
|
import {Geometry } from 'ol/geom';
|
|
|
|
export interface IStyles{
|
|
[id: string]: Style | (Feature<Geometry>);
|
|
}; |