@allmaps/render
Version:
Render functions for WebGL and image buffers
8 lines (6 loc) • 318 B
TypeScript
import { FetchFn } from '@allmaps/types';
declare const fetchAndGetImageDataWorker: {
getImageData(tileUrl: string, onAbort: () => void, fetchFn: FetchFn | undefined, width: number, height: number): Promise<ImageData>;
};
export type FetchAndGetImageDataWorkerType = typeof fetchAndGetImageDataWorker;
export {};