UNPKG

@giro3d/giro3d

Version:

A JS/WebGL framework for 3D geospatial data visualization

19 lines 584 B
import Extent from '../core/geographic/Extent'; import type { ImageResponse } from './ImageSource'; import ImageSource from './ImageSource'; /** * An image source that produces nothing. Mainly for debugging/testing purposes. */ declare class NullSource extends ImageSource { readonly isNullSource: true; readonly type: "NullSource"; private readonly _extent; constructor(options?: { extent?: Extent; }); getCrs(): string; getImages(): ImageResponse[]; getExtent(): Extent; } export default NullSource; //# sourceMappingURL=NullSource.d.ts.map