Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

utcTickInterval

Returns the time interval that would be used by d3.utcTicks given the same arguments. If there is no associated interval, such as when start or stop is invalid, returns null.

function utcTickInterval(
start: Date,
stop: Date,
count: number,
): TimeInterval | null;
§
utcTickInterval(start: Date, stop: Date, count: number): TimeInterval | null
[src]

§Parameters

§
start: Date
[src]
§
stop: Date
[src]
§
count: number
[src]

§Return Type