mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
8 lines
354 B
TypeScript
8 lines
354 B
TypeScript
import { Coordinate } from './coordinate';
|
|
import { Extent } from './extent';
|
|
import { Size } from './size';
|
|
|
|
export type Type = (p0: Coordinate | undefined, p1: number, p2: Size, p3?: boolean) => Coordinate;
|
|
export function createExtent(extent: Extent, onlyCenter: boolean, smooth: boolean): Type;
|
|
export function none(center?: Coordinate): Coordinate;
|