UNPKG

maplibre-gl

Version:

BSD licensed community fork of mapbox-gl, a WebGL interactive maps library

7 lines (6 loc) 97 B
/** * A request that can be cancelled */ export type Cancelable = { cancel: () => void; };