From c49aac404f249c4a0f3bdd0bfb6ed2d162edbb02 Mon Sep 17 00:00:00 2001 From: Andy Date: Mon, 23 Oct 2017 08:00:15 -0700 Subject: [PATCH] mapbox: Fix no-unnecessary-class lint (#20821) --- types/mapbox/index.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/types/mapbox/index.d.ts b/types/mapbox/index.d.ts index 23429f01d2..187004fb6d 100644 --- a/types/mapbox/index.d.ts +++ b/types/mapbox/index.d.ts @@ -366,12 +366,12 @@ declare global { ///////////////////////////// CONFIGURATION ////////////////////////// ////////////////////////////////////////////////////////////////////// - class config { - static FORCE_HTTPS: boolean; + namespace config { + const FORCE_HTTPS: boolean; - static HTTP_URLS: string[]; + const HTTP_URLS: string[]; - static HTTPS_URLS: string[]; + const HTTPS_URLS: string[]; } } }