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

AxisDomain

A helper type to alias elements which can serve as a domain for an axis.

type AxisDomain =
| number
| string
| Date
| {
valueOf(): number;
}
;

§Type

§
number | string | Date | {
valueOf(): number;
}
[src]