DefinitelyTyped/types/ol/centerconstraint.d.ts
2019-08-13 16:43:56 -07:00

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;