import { Nullable } from '@gisatcz/ptr-be-core/browser'; /** * Function type that represents map feature interaction */ export type FeatureInteractionFunc = (propertiesEntity: Nullable, coordinatesEntity: Nullable<[number, number]>) => void; /** * One of all possible map or feature interactions */ export type OneOfInteractionFunc = FeatureInteractionFunc;