mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
7 lines
295 B
TypeScript
7 lines
295 B
TypeScript
import { Extent } from './extent';
|
|
import TileGrid from './tilegrid/TileGrid';
|
|
|
|
export function all(extent: Extent, resolution: number): Extent[];
|
|
export function bbox(extent: Extent, resolution: number): Extent[];
|
|
export function tile(tileGrid: TileGrid): (p0: Extent, p1: number) => Extent[];
|