mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
#30160 : fix missing whitespaces
This commit is contained in:
parent
0f855d0d5d
commit
0a3806c9d8
4
types/d3-contour/index.d.ts
vendored
4
types/d3-contour/index.d.ts
vendored
@ -126,7 +126,7 @@ export function contours(): Contours;
|
||||
* the elements of the data array used with the density contour generator are two-element arrays.
|
||||
* The first element corresponds to the x-dimension, the second to the y-dimension.
|
||||
*/
|
||||
export interface ContourDensity<Datum =[number, number]> {
|
||||
export interface ContourDensity<Datum = [number, number]> {
|
||||
/**
|
||||
* Estimates the density contours for the given array of data, returning an array of GeoJSON MultiPolygon geometry objects.
|
||||
* Each geometry object represents the area where the estimated number of points per square pixel is greater than or equal to
|
||||
@ -266,4 +266,4 @@ export interface ContourDensity<Datum =[number, number]> {
|
||||
* Important: ensure that the x- and y-accessor functions are configured to
|
||||
* match the data type used for the generic Datum.
|
||||
*/
|
||||
export function contourDensity<Datum =[number, number]>(): ContourDensity<Datum>;
|
||||
export function contourDensity<Datum = [number, number]>(): ContourDensity<Datum>;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user