Commit 0e45e45f551247f2c441aa967a35a08c53d4e614

Authored by Igor Kulikov
1 parent 416d0458

Fix typo

... ... @@ -162,7 +162,7 @@ export interface HistorySelectSettings {
162 162 buttonColor: string;
163 163 }
164 164
165   -export type TripAnimationSttings = {
  165 +export type TripAnimationSettings = {
166 166 pointColor: string;
167 167 pointSize: number;
168 168 pointTooltipOnRightPanel: boolean;
... ... @@ -170,7 +170,7 @@ export type TripAnimationSttings = {
170 170
171 171 export type actionsHandler = ($event: Event, datasource: Datasource) => void;
172 172
173   -export type UnitedMapSettings = MapSettings & PolygonSettings & MarkerSettings & PolylineSettings & TripAnimationSttings;
  173 +export type UnitedMapSettings = MapSettings & PolygonSettings & MarkerSettings & PolylineSettings & TripAnimationSettings;
174 174
175 175 interface IProvider {
176 176 MapClass: Type<LeafletMap>,
... ...