| 8 | import { PMTiles, TileType } from "./index"; |
| 9 | |
| 10 | interface DocumentLike { |
| 11 | // biome-ignore lint: we don't want to bring in the entire document type |
| 12 | createElement: (s: string) => any; |
| 13 | } |
| 14 | |
| 15 | // biome-ignore lint: we don't want to bring in the entire document type |
| 16 | type DoneCallback = (error?: Error, tile?: any) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…