Dennis Meenhuis
Dennis Meenhuis
I've added the following to my ``lib.d.ts``: ```typescript declare var System: any; ``` And then in my code I can just call: ```typescript System.import('./path/to/module').then((c: any) => c.default) ``` Works for...
Ah, interesting, I didn't know that. Thanks for the heads-up! Although this seems fine for the moment, since ``System.import`` won't be removed before Webpack 3.
Just an update here, because I ran into something similar since we're using this library in our project as well. Although I feel the API of `validate` could be more...
Running into the same issue. The problem is the way the actual HTML that is passed to the Google ``InfoWindow`` is rendered. The library uses ``renderToString`` from ``react-dom/server``, which is...
@StephenDocP @EyMaddis @sidferreira did any of you have any luck getting this to work in a React Native app? Trying this myself in an attempt to speed up our builds...