fixed imports

This commit is contained in:
Fedor Katurov 2020-01-08 12:51:19 +07:00
parent 23c9e42bd5
commit 103097edbd
50 changed files with 260 additions and 229 deletions

View file

@ -1,4 +1,4 @@
import * as React from 'react';
import React from 'react';
import { Map, TileLayer } from 'leaflet';
export const MapContext = React.createContext<Map>(null);

View file

@ -1,4 +1,4 @@
import * as saveAs from 'file-saver';
import saveAs from 'file-saver';
export interface IRoutePoint {
lat: number,

View file

@ -1,6 +1,6 @@
// import { editor } from '$modules/Editor';
import { COLORS, CLIENT } from '$config/frontend';
import * as saveAs from 'file-saver';
import saveAs from 'file-saver';
import { replaceProviderUrl } from '$constants/providers';
import { STICKERS } from '$constants/stickers';
import { ILatLng } from '$redux/map/types';