How can I work around a bug in a published type declaration file Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live! Should we burninate the [wrap] tag?Angular 2 beta.17: Property 'map' does not exist on type 'Observable<Response>'Iterating over Typescript MapHaving error “Module 'name' resolves to an untyped module at…” when writing custom TypeScript definition fileTypeScript custom declaration files for untyped npm modulesTypescript import @google-cloud/pubsubSubsequent variable declarations must have the same type. Variable 'use' must be of type 'SVGProps', but here has type 'SVGProps'How do I reference a type declared in a TypeScript .d.ts file generated by tsc's “declaration” option in NPM package?How can I augment a property within a third-party TypeScript interface defined as “any”?Typescript: Compile ambient module declarations for publishing to NPMCould not find a declaration file for module 'react-native-foo-package'

List *all* the tuples!

The logistics of corpse disposal

3 doors, three guards, one stone

Why are Kinder Surprise Eggs illegal in the USA?

Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?

Why is "Consequences inflicted." not a sentence?

Are two submodules (where one is contained in the other) isomorphic if their quotientmodules are isomorphic?

Overriding an object in memory with placement new

Dating a Former Employee

English words in a non-english sci-fi novel

How would the world control an invulnerable immortal mass murderer?

Is it true that "carbohydrates are of no use for the basal metabolic need"?

Bete Noir -- no dairy

Identify plant with long narrow paired leaves and reddish stems

How to tell that you are a giant?

Why didn't this character "real die" when they blew their stack out in Altered Carbon?

How does the particle を relate to the verb 行く in the structure「A を + B に行く」?

What is a non-alternating simple group with big order, but relatively few conjugacy classes?

Can a USB port passively 'listen only'?

Seeking colloquialism for “just because”

porting install scripts : can rpm replace apt?

What's the purpose of writing one's academic biography in the third person?

Is the Standard Deduction better than Itemized when both are the same amount?

Output the ŋarâþ crîþ alphabet song without using (m)any letters



How can I work around a bug in a published type declaration file



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!
Should we burninate the [wrap] tag?Angular 2 beta.17: Property 'map' does not exist on type 'Observable<Response>'Iterating over Typescript MapHaving error “Module 'name' resolves to an untyped module at…” when writing custom TypeScript definition fileTypeScript custom declaration files for untyped npm modulesTypescript import @google-cloud/pubsubSubsequent variable declarations must have the same type. Variable 'use' must be of type 'SVGProps', but here has type 'SVGProps'How do I reference a type declared in a TypeScript .d.ts file generated by tsc's “declaration” option in NPM package?How can I augment a property within a third-party TypeScript interface defined as “any”?Typescript: Compile ambient module declarations for publishing to NPMCould not find a declaration file for module 'react-native-foo-package'



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I'm using the excellent react-mapbox-gl library in a TypeScript project. It's written in TypeScript and published on NPM with typings.



Unfortunately there's a bug in the typings which prevents them from being used in projects on TypeScript 3.2 or later:



/node_modules/react-mapbox-gl/lib/map.d.ts
(82,13): Subsequent property declarations must have the same type.
Property 'transformRequest' must be of type 'TransformRequestFunction',
but here has type 'RequestTransformFunction'.


This is what the problematic declaration looks like:



declare global 
namespace mapboxgl
interface MapboxOptions
failIfMajorPerformanceCaveat?: boolean;
transformRequest?: RequestTransformFunction;





You can use module augmentation to fix incomplete type declarations, but is it possible to address this sort of issue from within my project's code? Disabling type checking for this module also doesn't seem to be an option since the (broken) type declarations are bundled with the implementation (rather than in @types).










share|improve this question




























    0















    I'm using the excellent react-mapbox-gl library in a TypeScript project. It's written in TypeScript and published on NPM with typings.



    Unfortunately there's a bug in the typings which prevents them from being used in projects on TypeScript 3.2 or later:



    /node_modules/react-mapbox-gl/lib/map.d.ts
    (82,13): Subsequent property declarations must have the same type.
    Property 'transformRequest' must be of type 'TransformRequestFunction',
    but here has type 'RequestTransformFunction'.


    This is what the problematic declaration looks like:



    declare global 
    namespace mapboxgl
    interface MapboxOptions
    failIfMajorPerformanceCaveat?: boolean;
    transformRequest?: RequestTransformFunction;





    You can use module augmentation to fix incomplete type declarations, but is it possible to address this sort of issue from within my project's code? Disabling type checking for this module also doesn't seem to be an option since the (broken) type declarations are bundled with the implementation (rather than in @types).










    share|improve this question
























      0












      0








      0








      I'm using the excellent react-mapbox-gl library in a TypeScript project. It's written in TypeScript and published on NPM with typings.



      Unfortunately there's a bug in the typings which prevents them from being used in projects on TypeScript 3.2 or later:



      /node_modules/react-mapbox-gl/lib/map.d.ts
      (82,13): Subsequent property declarations must have the same type.
      Property 'transformRequest' must be of type 'TransformRequestFunction',
      but here has type 'RequestTransformFunction'.


      This is what the problematic declaration looks like:



      declare global 
      namespace mapboxgl
      interface MapboxOptions
      failIfMajorPerformanceCaveat?: boolean;
      transformRequest?: RequestTransformFunction;





      You can use module augmentation to fix incomplete type declarations, but is it possible to address this sort of issue from within my project's code? Disabling type checking for this module also doesn't seem to be an option since the (broken) type declarations are bundled with the implementation (rather than in @types).










      share|improve this question














      I'm using the excellent react-mapbox-gl library in a TypeScript project. It's written in TypeScript and published on NPM with typings.



      Unfortunately there's a bug in the typings which prevents them from being used in projects on TypeScript 3.2 or later:



      /node_modules/react-mapbox-gl/lib/map.d.ts
      (82,13): Subsequent property declarations must have the same type.
      Property 'transformRequest' must be of type 'TransformRequestFunction',
      but here has type 'RequestTransformFunction'.


      This is what the problematic declaration looks like:



      declare global 
      namespace mapboxgl
      interface MapboxOptions
      failIfMajorPerformanceCaveat?: boolean;
      transformRequest?: RequestTransformFunction;





      You can use module augmentation to fix incomplete type declarations, but is it possible to address this sort of issue from within my project's code? Disabling type checking for this module also doesn't seem to be an option since the (broken) type declarations are bundled with the implementation (rather than in @types).







      typescript






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 8 at 17:21









      danvkdanvk

      8,88324061




      8,88324061






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55068080%2fhow-can-i-work-around-a-bug-in-a-published-type-declaration-file%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55068080%2fhow-can-i-work-around-a-bug-in-a-published-type-declaration-file%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

          Алба-Юлія

          Захаров Федір Захарович