Skip to main content

Bounded <T>

Generic bound module of value T

Index

Bound

readonlymaxValue

maxValue: T

Maximum value for this type

@example
const anyNumber: number
anyNumber < Number.maxValue // true

readonlyminValue

minValue: T

Minimum value for this type

@example
const anyNumber: number
anyNumber > Number.minValue // true
Page Options