mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
7 lines
273 B
TypeScript
7 lines
273 B
TypeScript
import { Coordinate } from './coordinate';
|
|
import { Extent } from './extent';
|
|
|
|
export type Type = (p0: Coordinate | undefined) => Coordinate | undefined;
|
|
export function createExtent(extent: Extent): Type;
|
|
export function none(center?: Coordinate): Coordinate | undefined;
|