I'm working on a project with Typescript and Leaflet.
The documented (JS) way to extend the leaflet marker is like this:
L.Marker.Foo = L.Marker.extend({...});
However, Typescript complains:
Property 'Foo' does not exist on type 'typeof Marker'.
How can I change it so there are no compile errors?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…