mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 13:37:35 +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[];
|