UNPKG

338 BTypeScriptView Raw
1import { Map } from 'mapbox-gl';
2import { IMapboxInstance } from '../../typings/index';
3import BaseMapWrapper from '../BaseMapWrapper';
4import './logo.css';
5import MapboxService from './map';
6export default class MapboxWrapper extends BaseMapWrapper<Map & IMapboxInstance> {
7 protected getServiceConstructor(): typeof MapboxService;
8}