Type Aliases

ColumnType

Type Alias: ColumnType

ColumnType = "number" | "string" | "boolean" | "date"

Defined in: src/integrity/column-types/types.ts:46

What a declared column holds.

wordwhat a value must be
numbera JavaScript number that is FINITE — NaN and the infinities are a number that means "no number", and a chart handed one draws nothing
stringa JavaScript string, including the empty one (emptiness is meaning, and meaning is above this check's ceiling)
booleantrue or false — never 'true', never 0, never 1
datea valid Date instance, or a string Date.parse accepts (an epoch NUMBER is a number; say so and the axis picker stops guessing)

On this page