From c1942d4bc19043a03e9aa250fc8ee7da0840551e Mon Sep 17 00:00:00 2001 From: James Greenleaf Date: Sat, 4 May 2019 03:57:09 -0400 Subject: [PATCH] Add logical negation (#35133) https://docs.mapbox.com/mapbox-gl-js/style-spec/#expressions-! --- types/mapbox-gl/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/mapbox-gl/index.d.ts b/types/mapbox-gl/index.d.ts index a524e31aeb..8a80a24b83 100644 --- a/types/mapbox-gl/index.d.ts +++ b/types/mapbox-gl/index.d.ts @@ -32,7 +32,7 @@ declare namespace mapboxgl { // Lookup | 'at' | 'get' | 'has' | 'length' // Decision - | '!=' | '<' | '<=' | '==' | '>' | '>=' | 'all' | 'any' | 'case' | 'match' + | '!' | '!=' | '<' | '<=' | '==' | '>' | '>=' | 'all' | 'any' | 'case' | 'match' // Ramps, scales, curves | 'interpolate' | 'interpolate-hcl' | 'interpolate-lab' | 'step' // Variable binding